 | CargoQueryContextTableT(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.3+0a73c45f0c78941900e328c6c6b819597b665e00
Syntaxpublic ICargoRecordSet<T> Table<T>(
string? name
)
Public Function Table(Of T) (
name As String
) As ICargoRecordSet(Of T)
Dim instance As CargoQueryContext
Dim name As String
Dim returnValue As ICargoRecordSet(Of T)
returnValue = instance.Table(name)
public:
generic<typename T>
virtual ICargoRecordSet<T>^ Table(
String^ name
) sealed
abstract Table :
name : string -> ICargoRecordSet<'T>
override 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.
Implements
ICargoQueryContextTableT(String)
See Also