Click or drag to resize

SQLiteConnectionTableT Method

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

Namespace:  Unvired.Kernel.SQLite
Assembly:  Unvired.Kernel.UWP (in Unvired.Kernel.UWP.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
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