要更新 Table 存储实体的 Azure 函数 - CloudTable.Execute 未找到

Azure Function to Update Table Storage entity - CloudTable.Execute not found

我开始使用 Azure 和 c#,我正在尝试使用 Table 存储 - 并使用 Azure 函数更新 table 中的实体。我的代码如下:

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

public static async Task<HttpResponseMessage> Run(HttpRequest req, CloudTable lookupTable)
{
    string requestBody = await new StreamReader(req.Body).ReadToEndAsync();
    dynamic data = JsonConvert.DeserializeObject(requestBody);
    string partitionKey = data.Society;
    string rowKey = data.ConnectionDetails.Environment; 
    string newConnection = data.ConnectionDetails.Connection; 

    TableOperation operation = TableOperation.Retrieve<SocietyConnectionDetails>(partitionKey, rowKey); 
    TableResult result = lookupTable.Execute(operation);
    SocietyConnectionDetails societyConnectionDetails = (SocietyConnectionDetails)result.Result; 

    societyConnectionDetails.Connection = newConnection; 
    operation = TableOperation.Replace(societyConnectionDetails); 
    lookupTable.Execute(operation);
}

public class SocietyConnectionDetails : TableEntity
{
    public string Connection {get; set;}
}

但是我得到的错误如下:

2020-02-25T10:33:16.956 [Error] run.csx(17,38): error CS1061: 'CloudTable' does not contain a definition for 'Execute' and no accessible extension method 'Execute' accepting a first argument of type 'CloudTable' could be found (are you missing a using directive or an assembly reference?)
2020-02-25T10:33:16.984 [Error] run.csx(22,17): error CS1061: 'CloudTable' does not contain a definition for 'Execute' and no accessible extension method 'Execute' accepting a first argument of type 'CloudTable' could be found (are you missing a using directive or an assembly reference?)
2020-02-25T10:33:17.011 [Error] run.csx(8,47): error CS0161: 'Run(HttpRequest, CloudTable)': not all code paths return a value

当我尝试 'Execute' 我的 Table 操作时,我可以看到问题正在发生...这可能是一个相对简单的问题,但我正在努力弄清楚为什么会这样不会工作...

感谢您的帮助..

我假设您使用的是 Azure Functions 运行时 2,在这种情况下,问题与您的引用有关。根据 Microsoft 文档中的 this article,您应该引用 nuget 包 Microsoft.Azure.WebJobs.Extensions.Storage 并确保它已安装在您的函数中。

我可以重现你的错误。

像这样:

解决方案是向您的函数添加一个 function.proj 文件。

<Project Sdk="Microsoft.NET.Sdk">
    <PropertyGroup>
        <TargetFramework>netcoreapp3.0</TargetFramework>
    </PropertyGroup>
    <ItemGroup>
        <PackageReference Include="WindowsAzure.Storage" Version="9.3.3" />
    </ItemGroup>
</Project>

然后错误应该消失了。 (如果你不这样做,编译步骤将不会成功。)