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

MobileServiceTableExtensions.ReadAsync 方法

定义

执行对表的查询。

public static System.Threading.Tasks.Task<Newtonsoft.Json.Linq.JToken> ReadAsync (this Microsoft.WindowsAzure.MobileServices.IMobileServiceTable table, string query, System.Collections.Generic.IDictionary<string,string> parameters);
static member ReadAsync : Microsoft.WindowsAzure.MobileServices.IMobileServiceTable * string * System.Collections.Generic.IDictionary<string, string> -> System.Threading.Tasks.Task<Newtonsoft.Json.Linq.JToken>
<Extension()>
Public Function ReadAsync (table As IMobileServiceTable, query As String, parameters As IDictionary(Of String, String)) As Task(Of JToken)

参数

table
IMobileServiceTable

要从中读取的表的实例。

query
String

要执行的查询。

parameters
IDictionary<String,String>

要在请求 URI 查询字符串中包括的用户定义的参数和值的字典。

返回

Task<Newtonsoft.Json.Linq.JToken>

在查询结束时将返回的含有查询结果的任务。

适用于