MobileServiceClient.GetTable Método

Definición

Sobrecargas

GetTable(String)

Devuelve una instancia de IMobileServiceTable, que proporciona operaciones de datos sin tipo para esa tabla.

GetTable<T>()

Devuelve una instancia de IMobileServiceTable<T>, que proporciona operaciones de datos fuertemente tipadas para esa tabla.

GetTable(String)

Devuelve una instancia de IMobileServiceTable, que proporciona operaciones de datos sin tipo para esa tabla.

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

Parámetros

tableName
String

Nombre de la tabla.

Devoluciones

La tabla.

Implementaciones

Se aplica a

GetTable<T>()

Devuelve una instancia de IMobileServiceTable<T>, que proporciona operaciones de datos fuertemente tipadas para esa tabla.

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)

Parámetros de tipo

T

Tipo de las instancias de la tabla.

Devoluciones

La tabla.

Implementaciones

Se aplica a