DocumentDB API输出绑定DELETE

时间:2017-11-04 18:30:19

标签: node.js azure azure-cosmosdb azure-functions

带有HTTP触发器和2个DocumentDB绑定的Azure功能应用程序 - 进出 在this page上有很好的例子,说明如何添加新文档,获取现有文档并进行更新。但是 - 没有关于如何删除一个的例子!
是否可以使用输出绑定删除现有文档?如果没有,最好的选择是什么 - 在功能中使用Azure SDK? 感谢。

1 个答案:

答案 0 :(得分:0)

是的,要删除您必须编写Azure功能的文档...如果您使用的是更改源,这里是pcode。

#r "Microsoft.Azure.Documents.Client"
using Microsoft.Azure.Documents;
using System.Collections.Generic;
using System;
public static void Run(IReadOnlyList<Document> documents, TraceWriter log)
{
     //Get the document Id documents[0].Id);
     //set the Request option
     call DeleteDocumentAsync(string documentLink, RequestOptions options = null);
}