在ASP.NET 4.6中,web.config中有一个connectionStrings部分,您可以在其中添加无限量的连接字符串并将其动态读取到应用程序中,或者按名称获取单个连接字符串。
我见过的ASP.NET Core示例使用appsettings.json文件来存储设置,然后将这些设置绑定到具有与设置名称匹配的属性的强类型对象。带有设置值的绑定对象存储在一个容器中,以便在应用程序周围注入。
我需要在appsettings.json中有一个connectionStrings列表,并允许用户在运行时选择数据库(当他们登录时)。我将存储用户连接的数据库的名称作为声明。但是,我需要能够在整个应用程序中注入或以某种方式访问连接字符串列表,以便我可以获取用户连接到的DB的连接字符串。此外,我需要能够为实体框架提供连接字符串。
答案 0 :(得分:2)
appsettings.json与web.config在存储和访问ConnectionStrings方面具有相同的功能
{
"ConnectionStrings": {
"SqlServerConnection" : "Server=.\\sql2012express;Database=aspnet-IdentityServer4WithAspNetIdentity;Trusted_Connection=True;MultipleActiveResultSets=true",
"SqLiteConnection": "Data\\LynxJournal.db"
},
}
可以使用代码
访问这些内容_config.GetConnectionString("SqliteConnection")
其中SqlliteConnection是连接字符串的名称
_config是从Startup.cs中注入IConfiguration服务,其中配置在
中 public Startup(IHostingEnvironment env)
{
var builder = new ConfigurationBuilder()
.SetBasePath(env.ContentRootPath)
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
.AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true);
builder.AddEnvironmentVariables();
Configuration = builder.Build();
Environment = env;
}
public IConfigurationRoot Configuration { get; }
private IHostingEnvironment Environment { get; }
public void ConfigureServices(IServiceCollection services)
{
services.AddMemoryCache();
services.AddEntityFrameworkSqlite().AddDbContext<LynxJournalDbContext>();
services.AddMvcCore()
.AddAuthorization()
.AddJsonFormatters();
services.AddSingleton<IConfiguration>(Configuration);
services.AddSingleton<IHostingEnvironment>(Environment);
Services = services;
}