| ICargoQueryContextTableT(String) Method |
This is preliminary documentation and is subject to change.
Starts a Linq query expression on the specified Cargo model and Cargo table.
Namespace: WikiClientLibrary.Cargo.LinqAssembly: WikiClientLibrary.Cargo (in WikiClientLibrary.Cargo.dll) Version: 0.9.0-int.2+447d1d590e6726b7881f750a0a0e42908f3e417e
Syntax ICargoRecordSet<T> Table<T>(
string? name
)
Function Table(Of T) (
name As String
) As ICargoRecordSet(Of T)
Dim instance As ICargoQueryContext
Dim name As String
Dim returnValue As ICargoRecordSet(Of T)
returnValue = instance.Table(name)
generic<typename T>
ICargoRecordSet<T>^ Table(
String^ name
)
abstract Table :
name : string -> ICargoRecordSet<'T>
Parameters
- name String
- name of the Cargo table. Specify null to use default table name corresponding to the model.
Type Parameters
- T
- type of the model.
Return Value
ICargoRecordSetTLINQ root.
See Also