Click or drag to resize

SQLiteConnectionTableT Method

Returns a queryable interface to the table represented by the given type.

Namespace:  SQLite
Assembly:  RebornBuddy (in RebornBuddy.exe) Version: 3.3.1; net-4.5.win32; release
Syntax
C#
public TableQuery<T> Table<T>()
where T : new()

Type Parameters

T

Return Value

Type: TableQueryT
A queryable object that is able to translate Where, OrderBy, and Take queries into native SQL.
See Also