Skip to main content

SelectQueryFluentBuilder.Top(Int32) Method

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

Namespace: DevExpress.DataAccess.Sql

Assembly: DevExpress.DataAccess.v24.2.dll

NuGet Package: DevExpress.DataAccess

#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