Skip to content

TQueryLinqExtensions_Skip_VMBKlF1hswfWuNOSiEY+YQ

Jacob Spitzer edited this page Aug 28, 2022 · 2 revisions

TQueryLinqExtensions.Skip<Table>(DbEc<Table>, int) Method

Bypasses a specified number of records in a TQuery recordset and then returns the remaining records.

public static DbEasyConnect.DbEc<Table> Skip<Table>(this DbEasyConnect.DbEc<Table> tQuery, int count);

Type parameters

Table
The type of the records of table class. need to be a class with the [Table("")] attribute.

Parameters

tQuery DbEasyConnect.DbEc<Table>
An DbEc<T> that contains the queryable table to apply the predicate to.

count System.Int32
The number of records to skip before returning the remaining records.

Returns

DbEasyConnect.DbEc<Table>
An DbEc<T> that contains records that occur after the specified index in the TQuery recordset.

Clone this wiki locally