如何在不知道分区键值的情况下从 Cosmos DB 中删除对象?

问题描述 投票:0回答:3

如果我没有分区键值,如何删除文档?

我有文档的

id
和分区键的属性名称(在我的例子中:
type
)。

我尝试过:

var docLink = UriFactory.CreateDocumentUri(databaseName, collectionName, documentId);
var resp = client.DeleteDocumentAsync(docLink).Result;

出现错误:

PartitionKey value must be supplied for this operation.

示例文档:

{
   "id": "AB12CD", 
   "type": "Company", 
   "Address": "123 Test Street"
}

我尝试获取特定文档id的分区键值

使用C#代码...

我尝试通过其

id
读取文档,然后拉出
type
值,但使用以下代码时出现错误:
InvalidOperationException: PartitionKey value must be supplied for this operation.

var response = client.ReadDocumentAsync(UriFactory.CreateDocumentUri(databaseName, collectionName, id)).Result;

我还尝试了跨分区查询:

FeedOptions queryOptions = new FeedOptions { MaxItemCount = 10 };
queryOptions.EnableCrossPartitionQuery = true;
var queryString =  "SELECT * FROM c WHERE c.id= '" + id + "'";
var QueryInSql = client.CreateDocumentQuery<JObject>(
                documentCollectionUri,,
                queryOptions).AsDocumentQuery();
var result = QueryInSql.ExecuteNextAsync<JObject>().Result;

res = result.ToList<JObject>(); //if result has nothing, will be empty list

^ 返回一个空列表。如果我检查 Azure 门户,我可以看到数据库中确实存在具有该特定 ID 的文档。

c# azure-cosmosdb
3个回答
12
投票

只要参考这个doc,你就会找到答案。

在C#代码中,请使用

Undefined.Value
,一切都会好起来的。

client.DeleteDocumentAsync(
          UriFactory.CreateDocumentUri(DbName, CollectionName, id), 
          new RequestOptions() { PartitionKey = new PartitionKey(Undefined.Value) });

希望对您有帮助。


更新答案:

也许我昨天误解了你的要求,让我在这里做一个新的澄清。

首先,您的集合按分区字段进行分区:

type

1.如果您不知道分区键的值并且文档确实有分区字段,请使用

EnableCrossPartitionQuery
属性。

FeedOptions queryOptions = new FeedOptions
        {
            MaxItemCount = 10,
            EnableCrossPartitionQuery = true
        };
 var id = '1';
 var queryString = "SELECT * FROM c WHERE c.id= '" + id + "'";
 var QueryInSql = client.CreateDocumentQuery<JObject>(
                        uri,
                        queryString,
                        queryOptions).AsDocumentQuery();
 var result = QueryInSql.ExecuteNextAsync<JObject>().Result;

 var res = result.ToList<JObject>(); //if result has nothing, will be empty list


 Console.WriteLine("\nRead {0}", res[0]);

2.如果您知道分区键的值并且文档确实有分区字段,请在 FeedOptions 中传递分区键属性。

3.如果您知道文档在分区集合中没有分区字段,请使用

Undefined.Value


5
投票

万一有人使用 python sdk 来到这里

delete_item
。如果该项目没有定义分区键

将空字典传递给

partition_key
参数以删除该项目。

cosmosContainerClient.delete_item(item['id'], partition_key={})

0
投票

在最新的

Microsoft.Azure.Cosmos
库中,您可以使用以下方法删除项目

await container.DeleteItemAsync<dynamic>(id, PartitionKey.None);
© www.soinside.com 2019 - 2024. All rights reserved.