我想像这样使用 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 - 在 Cosmos DB 中使用分区键创建集合,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48261296/

10-12 15:57