Skip to main content

TableQuery.Skip Property

Gets or sets 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

[DefaultValue(0)]
[LocalizableCategory(DataAccessStringId.QueryPropertyGridTableSelectionCategoryName)]
public int Skip { get; set; }

Property Value

Type Default Description
Int32 0

An integer value that specifies the number of rows to skip in a returned query result set.

Remarks

Note that the query result set should be sorted by one of the columns before specifying the Skip property. To do this, use the TableQuery.Sorting property.

You can use the TableQuery.Top property along with the Skip property to specify the number of rows to return after skipped rows.

See Also