TableController<TData>.Query Method ()
Provides a helper method for querying a backend store. It deals with any exceptions thrown by the IDomainManager<TData> and maps them into appropriate HTTP responses.
Namespace: Microsoft.WindowsAzure.Mobile.Service
Assembly: Microsoft.WindowsAzure.Mobile.Service.Tables (in Microsoft.WindowsAzure.Mobile.Service.Tables.dll)
Syntax
protected virtual IQueryable<TData> Query()
protected:
virtual IQueryable<TData>^ Query()
abstract Query : unit -> IQueryable<'TData>
override Query : unit -> IQueryable<'TData>
Protected Overridable Function Query As IQueryable(Of TData)
Return Value
Type: System.Linq.IQueryable<TData>
An IQueryable<T> returned by the IDomainManager<TData>.
See Also
TableController<TData> Class
Microsoft.WindowsAzure.Mobile.Service Namespace
Return to top