MobileServiceTableQuery<T> Class
Represents a query that can be evaluated against a Mobile Services table.
Inheritance Hierarchy
System.Object
Microsoft.WindowsAzure.MobileServices.MobileServiceTableQuery<T>
Namespace: Microsoft.WindowsAzure.MobileServices
Assembly: Microsoft.WindowsAzure.MobileServices.Managed (in Microsoft.WindowsAzure.MobileServices.Managed.dll)
Syntax
'Declaration
Public NotInheritable Class MobileServiceTableQuery(Of T)
'Usage
Dim instance As MobileServiceTableQuery(Of T)
public sealed class MobileServiceTableQuery<T>
generic<typename T>
public ref class MobileServiceTableQuery sealed
[<SealedAttribute>]
type MobileServiceTableQuery<'T> = class end
JScript does not support generic types and methods.
Type Parameters
- T
The type of the object in the Mobile Services table.
The MobileServiceTableQuery<T> type exposes the following members.
Methods
Name | Description | |
---|---|---|
Equals | (Inherited from Object.) | |
GetHashCode | (Inherited from Object.) | |
GetType | (Inherited from Object.) | |
IncludeTotalCount | Ensure the query will get the total count for all the records that would have been returned ignoring any take paging/limit clause specified by client or server. | |
OrderBy<TKey> | Applies the specified ascending order clause to the source query. | |
OrderByDescending<TKey> | Applies the specified descending order clause to the source query. | |
Select<U> | Applies the specified selection to the source query. | |
Skip | Applies the specified skip clause to the source query. | |
Take | Applies the specified take clause to the source query. | |
ThenBy<TKey> | Applies the specified ascending order clause to the source query. | |
ThenByDescending<TKey> | Applies the specified descending order clause to the source query. | |
ToCollectionView | Creates a new collection view based on the query. | |
ToEnumerableAsync | Evaluates the query asynchronously and return the results. | |
ToListAsync | Evaluates the query asynchronously and return the results in a new List. | |
ToString | (Inherited from Object.) | |
Where | Applies the specified filter predicate to the source query. | |
WithParameters |
Top
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.