IDomainManager<TData>.QueryAsync Method (ODataQueryOptions)
Executes the provided query against a store.
Namespace: Microsoft.WindowsAzure.Mobile.Service.Tables
Assembly: Microsoft.WindowsAzure.Mobile.Service.Tables (in Microsoft.WindowsAzure.Mobile.Service.Tables.dll)
Syntax
Task<IEnumerable<TData>> QueryAsync(
ODataQueryOptions query
)
Task<IEnumerable<TData>^>^ QueryAsync(
ODataQueryOptions^ query
)
abstract QueryAsync :
query:ODataQueryOptions -> Task<IEnumerable<'TData>>
Function QueryAsync (
query As ODataQueryOptions
) As Task(Of IEnumerable(Of TData))
Parameters
query
Type: System.Web.Http.OData.Query.ODataQueryOptionsThe ODataQueryOptions query to execute.
Return Value
Type: System.Threading.Tasks.Task<IEnumerable<TData>>
An IEnumerable<T> representing the result of the query.
Remarks
See also M:LookupAsync which is the companion method for executing a lookup for a single item.
See Also
IDomainManager<TData> Interface
Microsoft.WindowsAzure.Mobile.Service.Tables Namespace
Return to top