0

我正在尝试使用Windows Azure 预览门户上的 应用程序设置部分为我的 Azure Web 应用程序配置一些键/值对。在此处输入图像描述

根据文档,Azure 应该在运行时将配置的键/值对注入到 .Net 配置 AppSettings 中。

有谁知道,如何RegisterServices在类的方法中读取这些值NinjectWebCommon?我尝试了一种常见的方式

ConfigurationManager.AppSettings["MyWebApp.DbConnectionString"];

但它返回空值或空值。稍后在我的 Web 应用程序中读取应用程序设置工作正常。

4

1 回答 1

0

I do not know how exactly this works but the RegisterServices method is probably called earlier than Azure injects app settings into configuration. Fortunately, there is an alternative way to install Ninject for MVC3 that works (see Using Binaries from Github).

于 2012-08-24T05:57:03.860 回答