在使用 DocumentClient 的 CosmosDB 删除操作中,必须为此操作提供 PartitionKey 值
PartitionKey value must be supplied for this operation in CosmosDB delete operation using DocumentClient
我正在尝试通过 azure 函数从 Cosmos DB 数据库的容器中删除一个项目。
但是我收到此错误 必须为此操作提供 PartitionKey 值。 我也调查了 this 但没有从那里得到任何运气。
下面是我的代码-
public class Item{
public Item(){}
public string id {get; set;}
}
public static async Task<IActionResult> Run(HttpRequest req, ILogger log)
{
DocumentClient client = new DocumentClient(new Uri("https://***.documents.azure.com:443/"), Environment.GetEnvironmentVariable("key"));
string requestBody = await new StreamReader(req.Body).ReadToEndAsync();
var updated = JsonConvert.DeserializeObject<Item>(requestBody);
var option = new FeedOptions { EnableCrossPartitionQuery = true };
var collectionUri = UriFactory.CreateDocumentCollectionUri("Test_DB", "Test_Table");
var document = client.CreateDocumentQuery(collectionUri, option).Where(t => t.Id == updated.id)
.AsEnumerable().FirstOrDefault();
log.LogInformation("Total Incentive : " + document.GetPropertyValue<string>("id"));
if (document == null)
{
return new NotFoundResult();
}
log.LogInformation("Total Incentive : " + document.SelfLink);
log.LogInformation("Total Incentive : " + document.Id);
await client.DeleteDocumentAsync(document.SelfLink);
//await client.ReplaceDocumentAsync(document);
return new OkObjectResult("Deleted");
}
谷歌搜索后我意识到我需要提供分区键值作为 DeleteDocumentAsync() 中的第二个参数,如下所示。但是我正在修复如何为该函数提供该分区键值。
await client.DeleteDocumentAsync(document.SelfLink,
new Requestoptions
{
PartitionKey = new Microsoft.Azure.Documents.PartitionKey("33333")
}
)
数据库名称: Test_DB
Table 姓名: Test_Table
分区键: /testCategory
我要删除的 Test_Table 的示例元素是:
{
"id": "3f614t4e-q85f-4357-8393-a0b3542db4e1",
"Email": "testuser@test.com",
"Name": "Test User",
"_rid": "XNMBANxVc8oIAAAAAAAAAA==",
"_self": "dbs/XNMOXA==/colls/TNMNANyVc9o=/docs/XNMBANxVc8oIZZAAAAAAPP==/",
"_etag": "\"450031d4-0000-0300-0000-60cb36470000\"",
"_attachments": "attachments/",
"_ts": 1623930439
}
任何人都可以帮助我如何将该分区键放入 azure 函数代码中吗?或者如何调整数据库的table?
提前致谢。
如评论中所述,当文档中未指定分区键时,您可以使用Microsoft.Azure.Documents.PartitionKey.None
作为分区键值进行删除和更新。
在 Cosmos DB 中,每个文档在创建文档时都必须为分区键属性指定一个值(testCategory
在您的例子中)。但是,如果您不指定值,Cosmos DB 不会抱怨。它只是将此类文档放在一个特殊的分区中,可以通过在需要的方法中指定 Microsoft.Azure.Documents.PartitionKey.None
来访问该分区。
我正在尝试通过 azure 函数从 Cosmos DB 数据库的容器中删除一个项目。 但是我收到此错误 必须为此操作提供 PartitionKey 值。 我也调查了 this 但没有从那里得到任何运气。
下面是我的代码-
public class Item{
public Item(){}
public string id {get; set;}
}
public static async Task<IActionResult> Run(HttpRequest req, ILogger log)
{
DocumentClient client = new DocumentClient(new Uri("https://***.documents.azure.com:443/"), Environment.GetEnvironmentVariable("key"));
string requestBody = await new StreamReader(req.Body).ReadToEndAsync();
var updated = JsonConvert.DeserializeObject<Item>(requestBody);
var option = new FeedOptions { EnableCrossPartitionQuery = true };
var collectionUri = UriFactory.CreateDocumentCollectionUri("Test_DB", "Test_Table");
var document = client.CreateDocumentQuery(collectionUri, option).Where(t => t.Id == updated.id)
.AsEnumerable().FirstOrDefault();
log.LogInformation("Total Incentive : " + document.GetPropertyValue<string>("id"));
if (document == null)
{
return new NotFoundResult();
}
log.LogInformation("Total Incentive : " + document.SelfLink);
log.LogInformation("Total Incentive : " + document.Id);
await client.DeleteDocumentAsync(document.SelfLink);
//await client.ReplaceDocumentAsync(document);
return new OkObjectResult("Deleted");
}
谷歌搜索后我意识到我需要提供分区键值作为 DeleteDocumentAsync() 中的第二个参数,如下所示。但是我正在修复如何为该函数提供该分区键值。
await client.DeleteDocumentAsync(document.SelfLink,
new Requestoptions
{
PartitionKey = new Microsoft.Azure.Documents.PartitionKey("33333")
}
)
数据库名称: Test_DB
Table 姓名: Test_Table
分区键: /testCategory
我要删除的 Test_Table 的示例元素是:
{
"id": "3f614t4e-q85f-4357-8393-a0b3542db4e1",
"Email": "testuser@test.com",
"Name": "Test User",
"_rid": "XNMBANxVc8oIAAAAAAAAAA==",
"_self": "dbs/XNMOXA==/colls/TNMNANyVc9o=/docs/XNMBANxVc8oIZZAAAAAAPP==/",
"_etag": "\"450031d4-0000-0300-0000-60cb36470000\"",
"_attachments": "attachments/",
"_ts": 1623930439
}
任何人都可以帮助我如何将该分区键放入 azure 函数代码中吗?或者如何调整数据库的table?
提前致谢。
如评论中所述,当文档中未指定分区键时,您可以使用Microsoft.Azure.Documents.PartitionKey.None
作为分区键值进行删除和更新。
在 Cosmos DB 中,每个文档在创建文档时都必须为分区键属性指定一个值(testCategory
在您的例子中)。但是,如果您不指定值,Cosmos DB 不会抱怨。它只是将此类文档放在一个特殊的分区中,可以通过在需要的方法中指定 Microsoft.Azure.Documents.PartitionKey.None
来访问该分区。