0

AzureReader2 插件有什么方法可以从服务配置文件中读取其连接字符串和端点配置值,而不仅仅是从 web.config 中读取?

问题是我们构建了 Azure 包文件 (.cspkg) 并且 web.config 文件嵌入在包中。因此,我们努力在所有不同的部署(测试、开发和生产)中保持我们的 web.config 文件不变。我们通常使用包文件和服务配置文件进行部署。

4

1 回答 1

0

而是在应用程序启动期间通过代码安装 AzureReader 2,您可以直接将连接字符串传递给它:

var nvc = new NameValueCollection();
nvc["endpoint"] = "http://127.0.0.1:10000/devstoreaccount1/";
nvc["connectionString"] = "UseDevelopmentStorage=true";
new AzureReader2Plugin(nvc).Install(Config.Current);
于 2013-09-10T13:10:24.540 回答