使用 PowerShell 在应用程序设置中输入 Azure SQL 连接字符串
我已经部署了一个使用 PowerShell 的 Azure Web 应用和 Azure SQL 数据库。目前,我有以下代码,其中有一个虚拟值,用于设置SQL 连接字符串对于我的网络应用程序: $connectionStrings = @{ "sqlConnection"= @{ "value"="placeholder"; "type"="3" } } 我希望能够为我的 Azure SQL 数据库输入正确的 SQL 连接字符串,如下所示: 服务器=tcp:example.database.useastcloudapi.net;数据库=E...