  | 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.4+fbadc980737ddc9bb67116900ecad57f84a0b241
SyntaxICargoRecordSet<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