Skip to main content

SelectQueryFluentBuilder.Skip(Int32) Method

Specifies the number of rows to skip in a returned query result set.

Namespace: DevExpress.DataAccess.Sql

Assembly: DevExpress.DataAccess.v23.2.dll

NuGet Packages: DevExpress.DataAccess, DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap

Declaration

public SelectQueryFluentBuilder Skip(
    int skip
)

Parameters

Name Type Description
skip Int32

A non-negative integer value, specifying the number of rows to skip in a returned query result set (starting with the first data record).

Returns

Type Description
SelectQueryFluentBuilder

A SelectQueryFluentBuilder object.

Remarks

Before calling the Skip method, the query result set should be sorted by one of the columns (using the SelectQueryFluentBuilder.SortBy method).

To specify the number of rows to return after skipped rows, use the SelectQueryFluentBuilder.Top method.

The default zero value indicates that all rows are selected.

See Also