出于某种原因,我无法从Windows环境变量中检索连接字符串,它返回null值,但它就在那里。
以下是我尝试检索它的方法:
public void ConfigureServices(IServiceCollection services)
{
// Add framework services.
services.AddDbContext<ApplicationDbContext>(options =>
options.UseSqlServer(Configuration.GetConnectionString("WebApp5ConnectionStr")));
答案 0 :(得分:0)
我找到了解决方案,现在是:
我不得不改变:
Configuration.GetConnectionString( “WebApp5ConnectionStr”)
到
配置[ “WebApp5ConnectionStr”]