DocumentClient.CreatePermissionQuery
Method
Definition
Overloads
| CreatePermissionQuery(Uri, SqlQuerySpec, FeedOptions) |
Extension method to create a query for permissions in the Azure DocumentDB database service. |
| CreatePermissionQuery(String, String, FeedOptions) |
Overloaded. This method creates a query for permissions under a user in an Azure DocumentDB database using a SQL statement. It returns IQueryable{dynamic}. |
| CreatePermissionQuery(Uri, String, FeedOptions) |
Extension method to create a query for permissions in the Azure DocumentDB database service. |
| CreatePermissionQuery(Uri, FeedOptions) |
Extension method to create a query for permissions in the Azure DocumentDB database service. |
| CreatePermissionQuery(String, FeedOptions) |
Overloaded. This method creates a query for permissions under a user in an Azure DocumentDB database service. It returns IOrderedQueryable{Permission}. |
| CreatePermissionQuery(String, SqlQuerySpec, FeedOptions) |
Overloaded. This method creates a query for permissions under a user in 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. |
CreatePermissionQuery(Uri, SqlQuerySpec, FeedOptions)
Extension method to create a query for permissions in the Azure DocumentDB database service.
public System.Linq.IQueryable<dynamic> CreatePermissionQuery (Uri permissionsUri, Microsoft.Azure.Documents.SqlQuerySpec querySpec, Microsoft.Azure.Documents.Client.FeedOptions feedOptions = null);
- permissionsUri
- Uri
the URI to the permissions.
- querySpec
- SqlQuerySpec
The sql query.
- feedOptions
- FeedOptions
The options for processing the query results feed.
The query result set.
CreatePermissionQuery(String, String, FeedOptions)
Overloaded. This method creates a query for permissions under a user in an Azure DocumentDB database using a SQL statement. It returns IQueryable{dynamic}.
public System.Linq.IQueryable<dynamic> CreatePermissionQuery (string permissionsLink, string sqlExpression, Microsoft.Azure.Documents.Client.FeedOptions feedOptions = null);
- permissionsLink
- String
The path link for the persmissions under a user, e.g. dbs/db_rid/users/user_rid/permissions/.
- 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.
Remarks
Refer to https://msdn.microsoft.com/en-us/library/azure/dn782250.aspx and http://azure.microsoft.com/documentation/articles/documentdb-sql-query/ for syntax and examples.
CreatePermissionQuery(Uri, String, FeedOptions)
Extension method to create a query for permissions in the Azure DocumentDB database service.
public System.Linq.IQueryable<dynamic> CreatePermissionQuery (Uri permissionsUri, string sqlExpression, Microsoft.Azure.Documents.Client.FeedOptions feedOptions = null);
- permissionsUri
- Uri
the URI to the permissions.
- sqlExpression
- String
The sql query.
- feedOptions
- FeedOptions
The options for processing the query results feed.
The query result set.
CreatePermissionQuery(Uri, FeedOptions)
Extension method to create a query for permissions in the Azure DocumentDB database service.
public System.Linq.IOrderedQueryable<Microsoft.Azure.Documents.Permission> CreatePermissionQuery (Uri permissionsUri, Microsoft.Azure.Documents.Client.FeedOptions feedOptions = null);
- permissionsUri
- Uri
the URI to the permissions.
- feedOptions
- FeedOptions
The options for processing the query results feed.
The query result set.
CreatePermissionQuery(String, FeedOptions)
Overloaded. This method creates a query for permissions under a user in an Azure DocumentDB database service. It returns IOrderedQueryable{Permission}.
public System.Linq.IOrderedQueryable<Microsoft.Azure.Documents.Permission> CreatePermissionQuery (string permissionsLink, Microsoft.Azure.Documents.Client.FeedOptions feedOptions = null);
- permissionsLink
- String
The path link for the persmissions under a user, e.g. dbs/db_rid/users/user_rid/permissions/.
- feedOptions
- FeedOptions
The options for processing the query result feed. For details, see FeedOptions
An IOrderedQueryable{Permission} that can evaluate the query.
CreatePermissionQuery(String, SqlQuerySpec, FeedOptions)
Overloaded. This method creates a query for permissions under a user in 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> CreatePermissionQuery (string permissionsLink, Microsoft.Azure.Documents.SqlQuerySpec querySpec, Microsoft.Azure.Documents.Client.FeedOptions feedOptions = null);
- permissionsLink
- String
The path link for the persmissions under a user, e.g. dbs/db_rid/users/user_rid/permissions/.
- 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.
Remarks
Refer to https://msdn.microsoft.com/en-us/library/azure/dn782250.aspx and http://azure.microsoft.com/documentation/articles/documentdb-sql-query/ for syntax and examples.