MobileServiceTableQueryDescription Class

Definition

Represents the structural elements of a Mobile Services query over the subset of OData it uses.

public sealed class MobileServiceTableQueryDescription
type MobileServiceTableQueryDescription = class
Public NotInheritable Class MobileServiceTableQueryDescription
Inheritance
MobileServiceTableQueryDescription

Constructors

MobileServiceTableQueryDescription(String)

Initializes a new instance of the MobileServiceTableQueryDescription class.

Properties

Filter

Gets or sets the query's filter expression.

IncludeTotalCount

Gets or sets a value indicating whether the query should request the total count for all the records that would have been returned if the server didn't impose a data cap.

Ordering

Gets a list of expressions that specify the ordering constraints imposed on the query.

Selection

Gets a list of fields that should be selected from the items in the table.

Skip

Gets or sets the number of elements to skip.

TableName

Gets or sets the name of the table being queried.

Top

Gets or sets the number of elements to take.

Methods

Clone()

Creates a copy of MobileServiceTableQueryDescription

Parse(String, String)

Parses a OData query and creates a MobileServiceTableQueryDescription instance

ToODataString()

Convert the query structure into the standard OData URI protocol for queries.

Applies to