DocumentClient.CreateAttachmentQuery
Method
Definition
Overloads
| CreateAttachmentQuery(String, FeedOptions) |
Overloaded. This method creates a query for attachments in the Azure DocumentDB database service. It returns an IOrderedQueryable{Attachment}. |
| CreateAttachmentQuery(Uri, FeedOptions) |
Extension method to create a query for attachments in the Azure DocumentDB database service. |
| CreateAttachmentQuery(String, SqlQuerySpec, FeedOptions) |
Overloaded. This method creates a query for attachments in the Azure DocumentDB database service by 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. |
| CreateAttachmentQuery(String, String, FeedOptions) |
Overloaded. This method creates a query for attachments in the Azure DocumentDB database service by using a SQL statement. It returns an IQueryable{dynamic}. |
| CreateAttachmentQuery(Uri, SqlQuerySpec, FeedOptions) |
Extension method to create a query for attachments in the Azure DocumentDB database service. |
| CreateAttachmentQuery(Uri, String, FeedOptions) |
Extension method to create a query for attachments in the Azure DocumentDB database service. |
| CreateAttachmentQuery<T>(Uri, String, FeedOptions) |
Extension method to create a query for attachments in the Azure DocumentDB database service. |
| CreateAttachmentQuery<T>(Uri, SqlQuerySpec, FeedOptions) |
Extension method to create a query for attachments in the Azure DocumentDB database service. |
| CreateAttachmentQuery<T>(String, String, FeedOptions) |
Overloaded. This method creates a query for attachments in the Azure DocumentDB database service by using a SQL statement. |
| CreateAttachmentQuery<T>(String, FeedOptions) |
Overloaded. This method creates a query for attachments in the Azure DocumentDB database service. |
| CreateAttachmentQuery<T>(Uri, FeedOptions) |
Extension method to create a query for attachments in the Azure DocumentDB database service. |
| CreateAttachmentQuery<T>(String, SqlQuerySpec, FeedOptions) |
Overloaded. This method creates a query for attachments in the Azure DocumentDB database service by using a SQL statement with parameterized values. For more information on preparing SQL statements with parameterized values, please see SqlQuerySpec. |
CreateAttachmentQuery(String, FeedOptions)
Overloaded. This method creates a query for attachments in the Azure DocumentDB database service. It returns an IOrderedQueryable{Attachment}.
public System.Linq.IOrderedQueryable<Microsoft.Azure.Documents.Attachment> CreateAttachmentQuery (string documentLink, Microsoft.Azure.Documents.Client.FeedOptions feedOptions = null);
- documentLink
- String
The link to the parent document
- feedOptions
- FeedOptions
The options for processing the query result feed. For details, see FeedOptions
An IOrderedQueryable{Attachments} that can evaluate the query with the provided SQL statement.
CreateAttachmentQuery(Uri, FeedOptions)
Extension method to create a query for attachments in the Azure DocumentDB database service.
public System.Linq.IOrderedQueryable<Microsoft.Azure.Documents.Attachment> CreateAttachmentQuery (Uri attachmentsUri, Microsoft.Azure.Documents.Client.FeedOptions feedOptions = null);
- attachmentsUri
- Uri
the URI to the attachments.
- feedOptions
- FeedOptions
The options for processing the query results feed.
The query result set.
CreateAttachmentQuery(String, SqlQuerySpec, FeedOptions)
Overloaded. This method creates a query for attachments in the Azure DocumentDB database service by 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> CreateAttachmentQuery (string documentLink, Microsoft.Azure.Documents.SqlQuerySpec querySpec, Microsoft.Azure.Documents.Client.FeedOptions feedOptions = null);
- documentLink
- String
The link to the parent document resource.
- 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 with the provided SQL statement.
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.
CreateAttachmentQuery(String, String, FeedOptions)
Overloaded. This method creates a query for attachments in the Azure DocumentDB database service by using a SQL statement. It returns an IQueryable{dynamic}.
public System.Linq.IQueryable<dynamic> CreateAttachmentQuery (string documentLink, string sqlExpression, Microsoft.Azure.Documents.Client.FeedOptions feedOptions = null);
- documentLink
- String
The link to the parent document.
- 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 with the provided SQL statement.
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.
CreateAttachmentQuery(Uri, SqlQuerySpec, FeedOptions)
Extension method to create a query for attachments in the Azure DocumentDB database service.
public System.Linq.IQueryable<dynamic> CreateAttachmentQuery (Uri attachmentsUri, Microsoft.Azure.Documents.SqlQuerySpec querySpec, Microsoft.Azure.Documents.Client.FeedOptions feedOptions = null);
- attachmentsUri
- Uri
the URI to the attachments.
- querySpec
- SqlQuerySpec
The sql query.
- feedOptions
- FeedOptions
The options for processing the query results feed.
The query result set.
CreateAttachmentQuery(Uri, String, FeedOptions)
Extension method to create a query for attachments in the Azure DocumentDB database service.
public System.Linq.IQueryable<dynamic> CreateAttachmentQuery (Uri attachmentsUri, string sqlExpression, Microsoft.Azure.Documents.Client.FeedOptions feedOptions = null);
- attachmentsUri
- Uri
the URI to the attachments.
- sqlExpression
- String
The sql query.
- feedOptions
- FeedOptions
The options for processing the query results feed.
The query result set.
CreateAttachmentQuery<T>(Uri, String, FeedOptions)
Extension method to create a query for attachments in the Azure DocumentDB database service.
public System.Linq.IQueryable<T> CreateAttachmentQuery<T> (Uri attachmentsUri, string sqlExpression, Microsoft.Azure.Documents.Client.FeedOptions feedOptions = null);
- T
- attachmentsUri
- Uri
the URI to the attachments.
- sqlExpression
- String
The sql query.
- feedOptions
- FeedOptions
The options for processing the query results feed.
The query result set.
CreateAttachmentQuery<T>(Uri, SqlQuerySpec, FeedOptions)
Extension method to create a query for attachments in the Azure DocumentDB database service.
public System.Linq.IQueryable<T> CreateAttachmentQuery<T> (Uri attachmentsUri, Microsoft.Azure.Documents.SqlQuerySpec querySpec, Microsoft.Azure.Documents.Client.FeedOptions feedOptions = null);
- T
- attachmentsUri
- Uri
the URI to the attachments.
- querySpec
- SqlQuerySpec
The sql query.
- feedOptions
- FeedOptions
The options for processing the query results feed.
The query result set.
CreateAttachmentQuery<T>(String, String, FeedOptions)
Overloaded. This method creates a query for attachments in the Azure DocumentDB database service by using a SQL statement.
public System.Linq.IQueryable<T> CreateAttachmentQuery<T> (string documentLink, string sqlExpression, Microsoft.Azure.Documents.Client.FeedOptions feedOptions = null);
- T
- documentLink
- String
The link of the parent document.
- sqlExpression
- String
The SQL statement.
- feedOptions
- FeedOptions
The options for processing the query result feed. For details, see FeedOptions
An IQueryable{T} that can evaluate the query with the provided SQL statement.
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.
CreateAttachmentQuery<T>(String, FeedOptions)
Overloaded. This method creates a query for attachments in the Azure DocumentDB database service.
public System.Linq.IOrderedQueryable<T> CreateAttachmentQuery<T> (string documentLink, Microsoft.Azure.Documents.Client.FeedOptions feedOptions = null);
- T
The type of object to query.
- documentLink
- String
The link of the parent document.
- feedOptions
- FeedOptions
The options for processing the query result feed. For details, see FeedOptions
An IOrderedQueryable{T} that can evaluate the query.
CreateAttachmentQuery<T>(Uri, FeedOptions)
Extension method to create a query for attachments in the Azure DocumentDB database service.
public System.Linq.IOrderedQueryable<T> CreateAttachmentQuery<T> (Uri attachmentsUri, Microsoft.Azure.Documents.Client.FeedOptions feedOptions = null);
- T
the type of object to query.
- attachmentsUri
- Uri
the URI to the attachments.
- feedOptions
- FeedOptions
The options for processing the query results feed.
The query result set.
CreateAttachmentQuery<T>(String, SqlQuerySpec, FeedOptions)
Overloaded. This method creates a query for attachments in the Azure DocumentDB database service by using a SQL statement with parameterized values. For more information on preparing SQL statements with parameterized values, please see SqlQuerySpec.
public System.Linq.IQueryable<T> CreateAttachmentQuery<T> (string documentLink, Microsoft.Azure.Documents.SqlQuerySpec querySpec, Microsoft.Azure.Documents.Client.FeedOptions feedOptions = null);
- T
- documentLink
- String
The link of the parent document.
- 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{T} that can evaluate the query with the provided SQL statement.
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.