我正在使用azure表存储来保存数据。我想将该方法创建为azure函数。当我在本地调试时,它工作正常。将其添加到azure函数中时,出现异常错误
未找到方法:'布尔型Microsoft.WindowsAzure.Storage.Table.CloudTable.CreateIfNotExists。
CloudTableClient tableClient = cloudStorageAccount.CreateCloudTableClient();
if (tableClient != null)
{
CloudTable table = tableClient.GetTableReference(reference);
table.CreateIfNotExists();
TableOperation insertOperation = TableOperation.Insert(entity);
table.Execute(insertOperation);
return true;
}
和WindowsAzure.Storage软件包配置,
<package id="WindowsAzure.Storage" version="7.2.1" targetFramework="net461" />
答案 0 :(得分:0)
将nuget更新为WindowsAzure.Storage 9.3.3 https://www.nuget.org/packages/WindowsAzure.Storage/,然后发布它应能运行的功能,并确保在应用程序设置中配置了连接字符串。