MobileServiceClient.GetTable Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GetTable(String) |
Returns a IMobileServiceTable instance, which provides untyped data operations for that table. |
GetTable<T>() |
Returns a IMobileServiceTable<T> instance, which provides strongly typed data operations for that table. |
GetTable(String)
Returns a IMobileServiceTable instance, which provides untyped data operations for that table.
public Microsoft.WindowsAzure.MobileServices.IMobileServiceTable GetTable (string tableName);
abstract member GetTable : string -> Microsoft.WindowsAzure.MobileServices.IMobileServiceTable
override this.GetTable : string -> Microsoft.WindowsAzure.MobileServices.IMobileServiceTable
Public Function GetTable (tableName As String) As IMobileServiceTable
Parameters
- tableName
- String
The name of the table.
Returns
The table.
Implements
Applies to
GetTable<T>()
Returns a IMobileServiceTable<T> instance, which provides strongly typed data operations for that table.
public Microsoft.WindowsAzure.MobileServices.IMobileServiceTable<T> GetTable<T> ();
abstract member GetTable : unit -> Microsoft.WindowsAzure.MobileServices.IMobileServiceTable<'T>
override this.GetTable : unit -> Microsoft.WindowsAzure.MobileServices.IMobileServiceTable<'T>
Public Function GetTable(Of T) () As IMobileServiceTable(Of T)
Type Parameters
- T
The type of the instances in the table.
Returns
The table.