MobileServiceClient.GetTable Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
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
override this.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.
Implementações
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>
override this.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.
Implementações
Aplica-se a
Azure SDK for .NET