你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

MobileServiceClient.GetTable 方法

定义

重载

GetTable(String)

返回一个 IMobileServiceTable 实例,该实例为该表提供非类型化的数据操作。

GetTable<T>()

返回一个 IMobileServiceTable<T> 实例,该实例为该表提供强类型的数据操作。

GetTable(String)

返回一个 IMobileServiceTable 实例,该实例为该表提供非类型化的数据操作。

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

参数

tableName
String

表的名称。

返回

表。

实现

适用于

GetTable<T>()

返回一个 IMobileServiceTable<T> 实例,该实例为该表提供强类型的数据操作。

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)

类型参数

T

表中实例的类型。

返回

表。

实现

适用于