DocumentDB - 删除文档



在本章中,我们将学习如何从你的 DocumentDB 帐户中删除文档。使用 Azure Portal,你可以通过在 Document Explorer 中打开文档并单击“删除”选项,轻松删除任何文档。

Delete Document

Delete Document Dialog

它将显示确认信息。现在按“是”按钮,你将看到该文档不再出现在你的 DocumentDB 帐户中。

现在,当你想要使用 .Net SDK 删除文档时。

步骤 1 − 它与我们之前见到的模式相同,我们将首先查询以获取每个新文档的 SelfLinks。在此处,我们不会使用 SELECT *,这将返回整个文档,这对我们来说没有必要。

步骤 2 − 相反,我们只选择 SelfLinks 到一个列表中,然后我们只需逐个调用每个 SelfLink 的 DeleteDocumentAsync,从集合中删除文档。

private async static Task DeleteDocuments(DocumentClient client) {
   Console.WriteLine();
   Console.WriteLine(">>> Delete Documents <<<");
   Console.WriteLine();
   Console.WriteLine("Quering for documents to be deleted");
	
   var sql =
      "SELECT VALUE c._self FROM c WHERE STARTSWITH(c.name, 'New Customer') = true";
		
   var documentLinks =
      client.CreateDocumentQuery<string>(collection.SelfLink, sql).ToList();
		
   Console.WriteLine("Found {0} documents to be deleted", documentLinks.Count);

   foreach (var documentLink in documentLinks) {
      await client.DeleteDocumentAsync(documentLink);
   }
	
   Console.WriteLine("Deleted {0} new customer documents", documentLinks.Count);
   Console.WriteLine();
}

步骤 3 − 现在,让我们从 CreateDocumentClient 任务调用上述 DeleteDocuments。

private static async Task CreateDocumentClient() {
   // Create a new instance of the DocumentClient 
   using (var client = new DocumentClient(new Uri(EndpointUrl), AuthorizationKey)) {
      database = client.CreateDatabaseQuery("SELECT * FROM c WHERE c.id =
         'myfirstdb'").AsEnumerable().First(); 
			
      collection = client.CreateDocumentCollectionQuery(database.CollectionsLink,
         "SELECT * FROM c WHERE c.id = 'MyCollection'").AsEnumerable().First();  
			
      await DeleteDocuments(client); 
   } 
}

执行上述代码时,你将收到以下输出。

***** Delete Documents *****  
Quering for documents to be deleted 
Found 2 documents to be deleted 
Deleted 2 new customer documents 
广告