gpt4 book ai didi

azure-cosmosdb - 在 CosmosDB 中使用 PartitionKey 创建集合

转载 作者:行者123 更新时间:2023-12-01 11:17:57 27 4
gpt4 key购买 nike

我想像这样使用 DocumentClient 在代码中创建一个集合

await client.CreateDocumentCollectionAsync (
UriFactory.CreateDatabaseUri(databaseId),
new DocumentCollection { Id = collectionId },
new RequestOptions { OfferThroughput = 1000 }
);

但是如何添加 PartitionKey?在 CosmosDB 模拟器中,我只是在我的类中为集合添加属性名称。无法解决。可能是我在这里遗漏了一些基本的东西。谢谢

最佳答案

您需要设置DocumentCollection.PartitionKeyDefinition

DocumentCollection collectionDefinition = new DocumentCollection();
collectionDefinition.Id = collectionId;
collectionDefinition.PartitionKey.Paths.Add("/deviceId"); //--> add this

DocumentCollection partitionedCollection = await client.CreateDocumentCollectionAsync(
UriFactory.CreateDatabaseUri(databaseId),
collectionDefinition,
new RequestOptions { OfferThroughput = 10100 });

关于azure-cosmosdb - 在 CosmosDB 中使用 PartitionKey 创建集合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48261296/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com