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

FeedOptions.PartitionKey 属性

定义

获取或设置 PartitionKey Azure Cosmos DB 服务中当前请求的 。

public Microsoft.Azure.Documents.PartitionKey PartitionKey { get; set; }
member this.PartitionKey : Microsoft.Azure.Documents.PartitionKey with get, set
Public Property PartitionKey As PartitionKey

属性值

示例

以下示例演示如何使用 PartitionKey读取分区集合中的文档源。 该示例假定使用所有文档中的“country”属性上的 创建 PartitionKeyDefinition 集合。

await client.ReadDocumentFeedAsync(
    collection.SelfLink, 
    new RequestOptions { PartitionKey = new PartitionKey("USA") } );

注解

读取已分区集合中的文档或附件源时,需要分区键。 具体而言, 和 需要分区键: ReadDocumentFeedAsync(String, FeedOptions, CancellationToken)ReadAttachmentFeedAsync(String, FeedOptions, CancellationToken)ReadConflictFeedAsync(String, FeedOptions)。 结果中仅返回包含 PartitionKey 的分区中的文档。

适用于

另请参阅