Skip to content

TQueryLinqExtensions_Bottom_f1FRYZcQkjWpgyVPMv9REg

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

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

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);

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 return.

Returns

DbEasyConnect.DbEc<Table>
An DbEc<T> that contains the specified number of records from the end of TQuery recordset.

Clone this wiki locally