IMobileServiceClient.GetTable Método

Definição

Sobrecargas

GetTable(String)

Retorna uma instância IMobileServiceTable, que fornece operações de dados não tipadas para essa tabela.

GetTable<T>()

Retorna uma instância IMobileServiceTable<T>, que fornece operações de dados fortemente tipadas para essa tabela.

GetTable(String)

Retorna uma instância IMobileServiceTable, que fornece operações de dados não tipadas para essa tabela.

public Microsoft.WindowsAzure.MobileServices.IMobileServiceTable GetTable (string tableName);
abstract member GetTable : string -> Microsoft.WindowsAzure.MobileServices.IMobileServiceTable
Public Function GetTable (tableName As String) As IMobileServiceTable

Parâmetros

tableName
String

O nome da tabela.

Retornos

A tabela.

Aplica-se a

GetTable<T>()

Retorna uma instância IMobileServiceTable<T>, que fornece operações de dados fortemente tipadas para essa tabela.

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)

Parâmetros de tipo

T

O tipo das instâncias na tabela.

Retornos

A tabela.

Aplica-se a