gpt4 book ai didi

Azure函数(VS2017)SQL表绑定(bind)

转载 作者:行者123 更新时间:2023-12-03 01:47:06 24 4
gpt4 key购买 nike

我正在尝试将数据从 AF 绑定(bind)到 Azure SQL。在 Azure Portal 中很容易在 function.json 文件中添加绑定(bind)参数

 {
"type": "apiHubTable",
"name": "outputTable",
"dataSetName": "default",
"tableName": "SpeechToText",
"connection": "sql_SQL",
"direction": "out"
}

但我无法在 VS2017 预览中执行此操作(无法绑定(bind)到 Azure SQL)

enter image description here

最佳答案

您需要引用Microsoft.Azure.WebJobs.Extensions.ApiHub NuGet包

Install-Package Microsoft.Azure.WebJobs.Extensions.ApiHub -Version 1.0.0-beta3 -Pre

然后使用 ApiHubTable 属性进行绑定(bind)

[ApiHubTable("sql_SQL", DataSetName = "default", TableName = "SpeechToText")]

关于Azure函数(VS2017)SQL表绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44983669/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com