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
Public method Equals (Inherited from Object.)
Public method GetHashCode (Inherited from Object.)
Public method GetType (Inherited from Object.)
Public method 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.
Public method OrderBy<TKey> Applies the specified ascending order clause to the source query.
Public method OrderByDescending<TKey> Applies the specified descending order clause to the source query.
Public method Select<U> Applies the specified selection to the source query.
Public method Skip Applies the specified skip clause to the source query.
Public method Take Applies the specified take clause to the source query.
Public method ThenBy<TKey> Applies the specified ascending order clause to the source query.
Public method ThenByDescending<TKey> Applies the specified descending order clause to the source query.
Public method ToCollectionView Creates a new collection view based on the query.
Public method ToEnumerableAsync Evaluates the query asynchronously and return the results.
Public method ToListAsync Evaluates the query asynchronously and return the results in a new List.
Public method ToString (Inherited from Object.)
Public method Where Applies the specified filter predicate to the source query.
Public method 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.

See Also

Reference

Microsoft.WindowsAzure.MobileServices Namespace