IMobileServiceClient.GetTable Méthode

Définition

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 à