你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

ChangeFeedDocumentClient.CreateDocumentQuery<T> 方法

定义

创建 IQueryable 的实例。

public System.Linq.IQueryable<T> CreateDocumentQuery<T> (string documentCollectionUri, Microsoft.Azure.Documents.SqlQuerySpec querySpec, Microsoft.Azure.Documents.Client.FeedOptions feedOptions = default);
abstract member CreateDocumentQuery : string * Microsoft.Azure.Documents.SqlQuerySpec * Microsoft.Azure.Documents.Client.FeedOptions -> System.Linq.IQueryable<'T>
override this.CreateDocumentQuery : string * Microsoft.Azure.Documents.SqlQuerySpec * Microsoft.Azure.Documents.Client.FeedOptions -> System.Linq.IQueryable<'T>
Public Function CreateDocumentQuery(Of T) (documentCollectionUri As String, querySpec As SqlQuerySpec, Optional feedOptions As FeedOptions = Nothing) As IQueryable(Of T)

类型参数

T

文档类型。

参数

documentCollectionUri
String

集合 URI。

querySpec
SqlQuerySpec

要执行的 的 SqlQuerySpec 实例。

feedOptions
FeedOptions

查询的选项。

返回

IQueryable

实现

适用于