我正在使用Visual Studio 2015 for Azure功能。但我有疑问:
1)如何使用VS 2015在Azure功能中定义Azure SQL数据库的连接字符串?
2)如何从VS 2015中的Azure功能获取连接字符串?
答案 0 :(得分:1)
App Service应用程序设置刀片用于配置和管理框架版本,远程调试,应用程序设置和连接字符串。将功能应用程序与其他Azure和第三方服务集成时,可以在此处修改这些设置。
How to manage a function app in the Azure portal
的“应用程序设置”部分提供了更多信息要读取appsetting(存储在appsettings.json中并可用作环境变量),您可以执行以下操作
public static string GetEnvironmentVariable(string name)
{
return $"{name}: {Environment.GetEnvironmentVariable(name, EnvironmentVariableTarget.Process}");
}
的环境变量部分中有关此内容的更多信息