IMobileServiceLocalStore.ReadAsync(MobileServiceTableQueryDescription) Method

Definition

Reads data from local table by executing the query.

public System.Threading.Tasks.Task<Newtonsoft.Json.Linq.JToken> ReadAsync (Microsoft.WindowsAzure.MobileServices.Query.MobileServiceTableQueryDescription query);
abstract member ReadAsync : Microsoft.WindowsAzure.MobileServices.Query.MobileServiceTableQueryDescription -> System.Threading.Tasks.Task<Newtonsoft.Json.Linq.JToken>
Public Function ReadAsync (query As MobileServiceTableQueryDescription) As Task(Of JToken)

Parameters

query
MobileServiceTableQueryDescription

Instance of MobileServiceTableQueryDescription that defines the query to be executed on local table.

Returns

Task<Newtonsoft.Json.Linq.JToken>

A task that returns instance of JObject or JArray with items matching the query.

Applies to