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)
Syntaxpublic TableQuery<T> Table<T>()
where T : new()
Public Function Table(Of T As New) As TableQuery(Of T)
public:
generic<typename T>
where T : gcnew()
TableQuery<T>^ Table()
member Table : unit -> TableQuery<'T> when '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