IDocumentClient.CreateUserQuery
Method
Definition
Overloads
| CreateUserQuery(Uri, String, FeedOptions) |
Method to create a query for users in the Azure DocumentDB database service. |
| CreateUserQuery(Uri, SqlQuerySpec, FeedOptions) |
Method to create a query for users in the Azure DocumentDB database service. |
| CreateUserQuery(String, String, FeedOptions) |
Overloaded. This method creates a query for users under an Azure DocumentDB database service. It returns IQueryable{dyanamic}. |
| CreateUserQuery(String, FeedOptions) |
Overloaded. This method creates a query for users under an Azure DocumentDB database service. It returns IOrderedQueryable{User}. |
| CreateUserQuery(Uri, FeedOptions) |
Method to create a query for users in the Azure DocumentDB database service. |
| CreateUserQuery(String, SqlQuerySpec, FeedOptions) |
Overloaded. This method creates a query for users under an Azure DocumentDB database using a SQL statement with parameterized values. It returns an IQueryable{dynamic}. For more information on preparing SQL statements with parameterized values, please see SqlQuerySpec. |
CreateUserQuery(Uri, String, FeedOptions)
Method to create a query for users in the Azure DocumentDB database service.
public System.Linq.IQueryable<dynamic> CreateUserQuery (Uri documentCollectionUri, string sqlExpression, Microsoft.Azure.Documents.Client.FeedOptions feedOptions = null);
- documentCollectionUri
- Uri
The URI of the parent document collection.
- sqlExpression
- String
The sql query.
- feedOptions
- FeedOptions
(Optional) The FeedOptions for processing the query results feed.
The query result set.
CreateUserQuery(Uri, SqlQuerySpec, FeedOptions)
Method to create a query for users in the Azure DocumentDB database service.
public System.Linq.IQueryable<dynamic> CreateUserQuery (Uri documentCollectionUri, Microsoft.Azure.Documents.SqlQuerySpec querySpec, Microsoft.Azure.Documents.Client.FeedOptions feedOptions = null);
- documentCollectionUri
- Uri
The URI of the parent document collection.
- querySpec
- SqlQuerySpec
The sql query.
- feedOptions
- FeedOptions
(Optional) The FeedOptions for processing the query results feed.
The query result set.
CreateUserQuery(String, String, FeedOptions)
Overloaded. This method creates a query for users under an Azure DocumentDB database service. It returns IQueryable{dyanamic}.
public System.Linq.IQueryable<dynamic> CreateUserQuery (string usersLink, string sqlExpression, Microsoft.Azure.Documents.Client.FeedOptions feedOptions = null);
- usersLink
- String
The path link for the users under a database, e.g. dbs/db_rid/users/.
- sqlExpression
- String
The SQL statement.
- feedOptions
- FeedOptions
The options for processing the query result feed. For details, see FeedOptions
an IQueryable{dynamic} that can evaluate the query.
CreateUserQuery(String, FeedOptions)
Overloaded. This method creates a query for users under an Azure DocumentDB database service. It returns IOrderedQueryable{User}.
public System.Linq.IOrderedQueryable<Microsoft.Azure.Documents.User> CreateUserQuery (string usersLink, Microsoft.Azure.Documents.Client.FeedOptions feedOptions = null);
- usersLink
- String
The path link for the users under a database, e.g. dbs/db_rid/users/.
- feedOptions
- FeedOptions
The options for processing the query result feed. For details, see FeedOptions
An IOrderedQueryable{User} that can evaluate the query.
CreateUserQuery(Uri, FeedOptions)
Method to create a query for users in the Azure DocumentDB database service.
public System.Linq.IOrderedQueryable<Microsoft.Azure.Documents.User> CreateUserQuery (Uri documentCollectionUri, Microsoft.Azure.Documents.Client.FeedOptions feedOptions = null);
- documentCollectionUri
- Uri
The URI of the parent document collection.
- feedOptions
- FeedOptions
(Optional) The FeedOptions for processing the query results feed.
The query result set.
CreateUserQuery(String, SqlQuerySpec, FeedOptions)
Overloaded. This method creates a query for users under an Azure DocumentDB database using a SQL statement with parameterized values. It returns an IQueryable{dynamic}. For more information on preparing SQL statements with parameterized values, please see SqlQuerySpec.
public System.Linq.IQueryable<dynamic> CreateUserQuery (string usersLink, Microsoft.Azure.Documents.SqlQuerySpec querySpec, Microsoft.Azure.Documents.Client.FeedOptions feedOptions = null);
- usersLink
- String
The path link for the users under a database, e.g. dbs/db_rid/users/.
- querySpec
- SqlQuerySpec
The SqlQuerySpec instance containing the SQL expression.
- feedOptions
- FeedOptions
The options for processing the query result feed. For details, see FeedOptions
an IQueryable{dynamic> that can evaluate the query.