从环境变量中检索连接字符串

时间:2016-08-04 22:07:01

标签: asp.net-core

出于某种原因,我无法从Windows环境变量中检索连接字符串,它返回null值,但它就在那里。

以下是我尝试检索它的方法:

     public void ConfigureServices(IServiceCollection services)
    {
        // Add framework services.
        services.AddDbContext<ApplicationDbContext>(options =>
            options.UseSqlServer(Configuration.GetConnectionString("WebApp5ConnectionStr")));

1 个答案:

答案 0 :(得分:0)

我找到了解决方案,现在是:

我不得不改变:

  

Configuration.GetConnectionString( “WebApp5ConnectionStr”)

  

配置[ “WebApp5ConnectionStr”]