IMobileServiceLocalStore.ReadAsync(MobileServiceTableQueryDescription) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.