Skip to main content
A newer version of this page is available. .

SelectQueryFluentBuilder.Top(Int32) Method

Specifies the number of rows returned in the query result set.

Namespace: DevExpress.DataAccess.Sql

Assembly: DevExpress.DataAccess.v18.2.dll

Declaration

public SelectQueryFluentBuilder Top(
    int top
)

Parameters

Name Type Description
top Int32

A non-negative integer value, specifying the number of selected records (starting with the first data record).

Returns

Type Description
SelectQueryFluentBuilder

A SelectQueryFluentBuilder object.

Remarks

Use the SelectQueryFluentBuilder.SortBy method to predictably indicate which rows are affected by the Top method.

The default zero value indicates that all rows are selected.

See Also