corelibraries-devexpress-dot-dataaccess-dot-sql-dot-selectquery-43611fe1.md
Specifies the number of rows to skip in a returned query result set.
Namespace : DevExpress.DataAccess.Sql
Assembly : DevExpress.DataAccess.v25.2.dll
NuGet Package : DevExpress.DataAccess
[DefaultValue(0)]
[LocalizableCategory(DataAccessStringId.QueryPropertyGridTableSelectionCategoryName)]
public int Skip { get; set; }
<DefaultValue(0)>
<LocalizableCategory(DataAccessStringId.QueryPropertyGridTableSelectionCategoryName)>
Public Property Skip As Integer
| Type | Default | Description |
|---|---|---|
| Int32 | 0 |
A non-negative integer value, specifying the number of rows to skip in a returned query result set (starting with the first data record).
|
Before specifying the Skip property, the query result set should be sorted by one of the columns (using the SelectQuery.Sorting property).
To specify the number of rows to return after skipped rows, use the SelectQuery.Top property.
The default zero value indicates that all rows are selected.
See Also