Azure 函数输入绑定:"Table" 属性的哪个 NuGet 包?
Azure function input binding: Which NuGet package for "Table" attribute?
我正在使用 HttpTrigger 创建一个新的 azure 函数。我想实现一个 azure table 存储 table 作为输入绑定。按照 msdn 中的源代码示例,我无法弄清楚可以在哪个 NuGet 包中找到 "Table" 属性。
编译问题:
找不到类型或命名空间 'TableAttribute'(是否缺少 using 指令或程序集引用?)
导致问题的代码行:
public static async Task<IActionResult>
Run([HttpTrigger(AuthorizationLevel.Function, "get", "post", Route = null)] HttpRequest req,
[Table("AzureWebJobsHostLogscommon")] CloudTable cloudTable,
ILogger log)
我所引用的MSDN中的源代码示例可以在这里找到:
这里:
第二个示例还显示了 using 指令。但即使复制示例,table-属性也无法正确解析。
我也看过这个 Whosebug 线程:
但第一个解决方案对我来说只是一种解决方法,因为 table-存储连接是在函数执行期间完成的,而不是作为输入绑定。如果您看到第二个建议的解决方案,它会显示与 MSDN 中相同的代码。
这是我的代码:
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Azure.WebJobs;
using Microsoft.Azure.WebJobs.Extensions.Http;
using Microsoft.Extensions.Logging;
using Microsoft.WindowsAzure.Storage.Table;
using System;
using System.Net;
using System.Threading.Tasks;
namespace TableStorageIntegration.HTTPTrigger
{
public static class Function1
{
[FunctionName("DoSomething")]
public static async Task<IActionResult> Run(
[HttpTrigger(AuthorizationLevel.Function, "get", "post", Route = null)] HttpRequest req,
[Table("AzureWebJobsHostLogscommon")] CloudTable cloudTable,
ILogger log)
{
string someHttpGetParameter = req.Query["someParameter"];
// ....
// Some addition code to be executed here but not relevant for the issue
// .....
return new OkObjectResult($"Data provided");
}
}
}
提议的实施是否仍然有效?如果是,我必须安装哪个 NuGet 包来解析 table 属性?
根据我的测试,如果要实现"Table"属性,可以扩展classTableEntity
。例如
using System;
using System.IO;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Azure.WebJobs;
using Microsoft.Azure.WebJobs.Extensions.Http;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Logging;
using Newtonsoft.Json;
using System.Data.SqlClient;
using System.Text;
using System.Configuration;
using Microsoft.Extensions.Configuration;
using Microsoft.WindowsAzure.Storage.Table;
namespace TestFunapp
{
public static class Function1
{
# install package Microsoft.Azure.WebJobs.Extensions.Storage
[FunctionName("Function1")]
public static async Task<IActionResult> Run(
[HttpTrigger(AuthorizationLevel.Anonymous, "get", "post", Route = null)] HttpRequest req,
[Table("People")] CloudTable cloudTable,
ILogger log, ExecutionContext context)
{
log.LogInformation("C# HTTP trigger function processed a request.");
string name = req.Query["name"];
TableOperation retrieveOperation = TableOperation.Retrieve<People>("Jim", "Xu");
TableResult retrievedResult = await cloudTable.ExecuteAsync(retrieveOperation);
if (retrievedResult.Result != null)
log.LogInformation(((People)retrievedResult.Result).Email);
else
log.LogInformation("The Email could not be retrieved.");
string requestBody = await new StreamReader(req.Body).ReadToEndAsync();
dynamic data = JsonConvert.DeserializeObject(requestBody);
name = name ?? data?.name;
return name != null
? (ActionResult)new OkObjectResult($"Hello, {name}")
: new BadRequestObjectResult("Please pass a name on the query string or in the request body");
}
}
public class People : TableEntity
{
public People(string lastName, string firstName)
{
this.PartitionKey = lastName;
this.RowKey = firstName;
}
public People() { }
public string Email { get; set; }
}
}
详情请参考document。
您需要添加这个 NuGet 包:https://nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.Storage
所以他们好像 removed TableAttribute
出于某种原因。
但是他们 working 打算在 2022 年初将其恢复。
同时,如果您使用的是 Azure 表,则有几个解决方法:
- 在发布新扩展之前,请继续使用支持表的函数扩展 v4 版本
- 使用上面链接的 Azure.Data.Tables 库从 Azure Functions 代码直接与 Azure Tables 服务交互。
我正在使用 HttpTrigger 创建一个新的 azure 函数。我想实现一个 azure table 存储 table 作为输入绑定。按照 msdn 中的源代码示例,我无法弄清楚可以在哪个 NuGet 包中找到 "Table" 属性。
编译问题:
找不到类型或命名空间 'TableAttribute'(是否缺少 using 指令或程序集引用?)
导致问题的代码行:
public static async Task<IActionResult>
Run([HttpTrigger(AuthorizationLevel.Function, "get", "post", Route = null)] HttpRequest req,
[Table("AzureWebJobsHostLogscommon")] CloudTable cloudTable,
ILogger log)
我所引用的MSDN中的源代码示例可以在这里找到:
这里:
第二个示例还显示了 using 指令。但即使复制示例,table-属性也无法正确解析。
我也看过这个 Whosebug 线程:
但第一个解决方案对我来说只是一种解决方法,因为 table-存储连接是在函数执行期间完成的,而不是作为输入绑定。如果您看到第二个建议的解决方案,它会显示与 MSDN 中相同的代码。
这是我的代码:
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Azure.WebJobs;
using Microsoft.Azure.WebJobs.Extensions.Http;
using Microsoft.Extensions.Logging;
using Microsoft.WindowsAzure.Storage.Table;
using System;
using System.Net;
using System.Threading.Tasks;
namespace TableStorageIntegration.HTTPTrigger
{
public static class Function1
{
[FunctionName("DoSomething")]
public static async Task<IActionResult> Run(
[HttpTrigger(AuthorizationLevel.Function, "get", "post", Route = null)] HttpRequest req,
[Table("AzureWebJobsHostLogscommon")] CloudTable cloudTable,
ILogger log)
{
string someHttpGetParameter = req.Query["someParameter"];
// ....
// Some addition code to be executed here but not relevant for the issue
// .....
return new OkObjectResult($"Data provided");
}
}
}
提议的实施是否仍然有效?如果是,我必须安装哪个 NuGet 包来解析 table 属性?
根据我的测试,如果要实现"Table"属性,可以扩展classTableEntity
。例如
using System;
using System.IO;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Azure.WebJobs;
using Microsoft.Azure.WebJobs.Extensions.Http;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Logging;
using Newtonsoft.Json;
using System.Data.SqlClient;
using System.Text;
using System.Configuration;
using Microsoft.Extensions.Configuration;
using Microsoft.WindowsAzure.Storage.Table;
namespace TestFunapp
{
public static class Function1
{
# install package Microsoft.Azure.WebJobs.Extensions.Storage
[FunctionName("Function1")]
public static async Task<IActionResult> Run(
[HttpTrigger(AuthorizationLevel.Anonymous, "get", "post", Route = null)] HttpRequest req,
[Table("People")] CloudTable cloudTable,
ILogger log, ExecutionContext context)
{
log.LogInformation("C# HTTP trigger function processed a request.");
string name = req.Query["name"];
TableOperation retrieveOperation = TableOperation.Retrieve<People>("Jim", "Xu");
TableResult retrievedResult = await cloudTable.ExecuteAsync(retrieveOperation);
if (retrievedResult.Result != null)
log.LogInformation(((People)retrievedResult.Result).Email);
else
log.LogInformation("The Email could not be retrieved.");
string requestBody = await new StreamReader(req.Body).ReadToEndAsync();
dynamic data = JsonConvert.DeserializeObject(requestBody);
name = name ?? data?.name;
return name != null
? (ActionResult)new OkObjectResult($"Hello, {name}")
: new BadRequestObjectResult("Please pass a name on the query string or in the request body");
}
}
public class People : TableEntity
{
public People(string lastName, string firstName)
{
this.PartitionKey = lastName;
this.RowKey = firstName;
}
public People() { }
public string Email { get; set; }
}
}
详情请参考document。
您需要添加这个 NuGet 包:https://nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.Storage
所以他们好像 removed TableAttribute
出于某种原因。
但是他们 working 打算在 2022 年初将其恢复。
同时,如果您使用的是 Azure 表,则有几个解决方法:
- 在发布新扩展之前,请继续使用支持表的函数扩展 v4 版本
- 使用上面链接的 Azure.Data.Tables 库从 Azure Functions 代码直接与 Azure Tables 服务交互。