-
Notifications
You must be signed in to change notification settings - Fork 0
TQueryLinqExtensions_Bottom_f1FRYZcQkjWpgyVPMv9REg
Jacob Spitzer edited this page Aug 28, 2022
·
2 revisions
Returns a specified number of contiguous records from the end of a TQuery recordset.
public static DbEasyConnect.DbEc<Table> Bottom<Table>(this DbEasyConnect.DbEc<Table> tQuery, int count);
Table
The type of the records of table class. need to be a class with the [Table("")] attribute.
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 return.
DbEasyConnect.DbEc<Table>
An DbEc<T> that contains the specified number of records from
the end of TQuery recordset.