2017-01-02 155 views

回答

3

是否有任何方法使用Azure函数API删除Azure表存储条目/条目?使用ICollector接口,可以轻松地在Azure函数绑定的表上执行两个操作,即读取和写入操作。

正如你所说,storage tables binding scenarios在Azure的功能正在阅读行(S)和写一行或多行,如果你想在Azure的功能删除的实体,您可以尝试reference "Microsoft.WindowsAzure.Storage" and import namespaces

#r "Microsoft.WindowsAzure.Storage" 
using System; 
using Microsoft.WindowsAzure.Storage; 
using Microsoft.WindowsAzure.Storage.Table; 

然后你可以写C#代码到retrieve the entity and delete it from Azure table storage