我正在尝试将我的新 Azure 函数连接到本地 SQL Server 数据库。Microsoft 文档提到这是可能的,但我无法弄清楚,也没有看到任何关于使用 Azure Functions 专门设置本地数据库的教程。
我想做一些类似于本教程的事情。
public static async void Run(TimerInfo myTimer, TraceWriter log)
{
var str = ConfigurationManager.ConnectionStrings["on-prem-connection"].ConnectionString;
//open connections and call db here - I know this
}
我可以以与上面的视频类似的方式来设置连接字符串,然后在 Azure 函数中引用该连接字符串。如果是这样,那是怎么做的。
谢谢。