我希望使用 CloudConfigurationManager,以便可以利用 Azure 配置文件。我想使用一个连接字符串,我在 Cloud.cscfg 中添加了一个字符串来配置实体框架上下文。
我正在像这样配置我的上下文
public DomainContext()
: base("ContextConnectionString")
这是从 Web.config 获取 ContextConnectionString
我将上下文构造函数更改为此
public DomainContext()
: base(CloudConfigurationManager.GetSetting("ContextConnectionString"))
现在它可以工作了。
有没有更优雅的方法来告诉我的上下文构造函数首先使用 Azure cscfg?