有没有办法使用Azure Functions API删除Azure表存储条目/条目?使用ICollector<T>
接口可以读取和写入Azure函数绑定中只能在表上轻松执行的两个操作。我想使用由计时器触发的函数来安排定期清理表。
答案 0 :(得分:3)
有没有办法使用Azure Functions API删除Azure表存储条目/条目?使用ICollector接口可以读取和写入只能通过Azure Functions绑定在表上轻松执行的两个操作。
正如您所说,Azure函数中的storage tables binding scenarios正在读取行并写入一行或多行,如果您要删除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。