IMobileServiceClient.GetTable
Method
Definition
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);
Parameters
- tableName
- String
The name of the table.
Returns
The table.
GetTable<T>()
Returns a IMobileServiceTable<T> instance, which provides strongly typed data operations for that table.
public Microsoft.WindowsAzure.MobileServices.IMobileServiceTable<T> GetTable<T> ();
Type Parameters
- T
The type of the instances in the table.
Returns
The table.