DocumentQueryable Class

 

Updated: June 30, 2017

This class provides extension methods for converting a IQueryable object to a IDocumentQuery object.

Namespace:   Microsoft.Azure.Documents.Linq
Assembly:  Microsoft.Azure.Documents.Client (in Microsoft.Azure.Documents.Client.dll)

SystemObject
  Microsoft.Azure.Documents.LinqDocumentQueryable

No code example is currently available or this language may not be supported.

NameDescription
System_CAPS_pubmethodSystem_CAPS_staticAsDocumentQuery

Converts an IQueryable to IDocumentQuery which supports pagination and asynchronous execution in the Azure DocumentDB database service.

System_CAPS_pubmethodSystem_CAPS_staticAverageAsync

Computes the average of a sequence of Decimal values.

System_CAPS_pubmethodSystem_CAPS_staticAverageAsync

Computes the average of a sequence of Double values.

System_CAPS_pubmethodSystem_CAPS_staticAverageAsync

Computes the average of a sequence of Int32 values.

System_CAPS_pubmethodSystem_CAPS_staticAverageAsync

Computes the average of a sequence of Int64 values.

System_CAPS_pubmethodSystem_CAPS_staticAverageAsync

Computes the average of a sequence of Nullable values.

System_CAPS_pubmethodSystem_CAPS_staticAverageAsync

Computes the average of a sequence of Nullable values.

System_CAPS_pubmethodSystem_CAPS_staticAverageAsync

Computes the average of a sequence of Nullable values.

System_CAPS_pubmethodSystem_CAPS_staticAverageAsync

Computes the average of a sequence of Nullable values.

System_CAPS_pubmethodSystem_CAPS_staticAverageAsync

Computes the average of a sequence of Nullable values.

System_CAPS_pubmethodSystem_CAPS_staticAverageAsync

Computes the average of a sequence of Single values.

System_CAPS_pubmethodSystem_CAPS_staticCountAsync

Returns the number of elements in a sequence.

System_CAPS_pubmethodSystem_CAPS_staticMaxAsync

Returns the maximum value in a generic IQueryable.

System_CAPS_pubmethodSystem_CAPS_staticMinAsync

Returns the minimum value in a generic IQueryable.

System_CAPS_pubmethodSystem_CAPS_staticSumAsync

Computes the sum of a sequence of Decimal values.

System_CAPS_pubmethodSystem_CAPS_staticSumAsync

Computes the sum of a sequence of Double values.

System_CAPS_pubmethodSystem_CAPS_staticSumAsync

Computes the sum of a sequence of Int32 values.

System_CAPS_pubmethodSystem_CAPS_staticSumAsync

Computes the sum of a sequence of Int64 values.

System_CAPS_pubmethodSystem_CAPS_staticSumAsync

Computes the sum of a sequence of Nullable values.

System_CAPS_pubmethodSystem_CAPS_staticSumAsync

Computes the sum of a sequence of Nullable values.

System_CAPS_pubmethodSystem_CAPS_staticSumAsync

Computes the sum of a sequence of Nullable values.

System_CAPS_pubmethodSystem_CAPS_staticSumAsync

Computes the sum of a sequence of Nullable values.

System_CAPS_pubmethodSystem_CAPS_staticSumAsync

Computes the sum of a sequence of Nullable values.

System_CAPS_pubmethodSystem_CAPS_staticSumAsync

Computes the sum of a sequence of Single values.

The DocumentClient class provides implementation of standard query methods for querying resources in DocumentDB. These methods enable you to express traversal, filter, and projection operations over data persisted in the Azure DocumentDB database service. They are defined as methods that extend IQueryable, and do not perform any querying directly. Instead, their functionality is to create queries based the resource and query expression provided. The actual query execution occurs when enumeration forces the expression tree associated with an IQueryable object to be executed.

Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Return to top
Show: