IMobileServiceClient.GetTable Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
GetTable(String) |
Retournes une instance IMobileServiceTable, qui fournit les opérations de données non typées pour cette table. |
GetTable<T>() |
Retournes une instance IMobileServiceTable<T>, qui fournit les opérations de données fortement typées pour cette table. |
GetTable(String)
Retournes une instance IMobileServiceTable, qui fournit les opérations de données non typées pour cette table.
public Microsoft.WindowsAzure.MobileServices.IMobileServiceTable GetTable (string tableName);
abstract member GetTable : string -> Microsoft.WindowsAzure.MobileServices.IMobileServiceTable
Public Function GetTable (tableName As String) As IMobileServiceTable
Paramètres
- tableName
- String
Nom de la table.
Retours
Table.
S’applique à
GetTable<T>()
Retournes une instance IMobileServiceTable<T>, qui fournit les opérations de données fortement typées pour cette table.
public Microsoft.WindowsAzure.MobileServices.IMobileServiceTable<T> GetTable<T> ();
abstract member GetTable : unit -> Microsoft.WindowsAzure.MobileServices.IMobileServiceTable<'T>
Public Function GetTable(Of T) () As IMobileServiceTable(Of T)
Paramètres de type
- T
Type des instances dans la table.
Retours
Table.
S’applique à
Azure SDK for .NET