您如何在 .net 核心(非强类型)中拥有和访问可变数量的连接字符串?

How can you have and access a variable amount of connection strings in .net core (not strongly typed)?

在 ASP.NET 4.6 中,web.config 中有一个 connectionStrings 部分,您可以在其中添加无限量的连接字符串并将它们动态读入应用程序或按名称获取单个连接字符串。

我看到的 ASP.NET 核心示例使用 appsettings.json 文件来存储设置,然后将这些设置绑定到具有与设置名称匹配的属性的强类型对象。具有设置值的绑定对象存储在一个容器中,以注入到您的应用程序中。

我需要在 appsettings.json 中有一个 connectionStrings 列表,并允许用户在运行时(登录时)select 数据库。我将存储用户连接到的数据库的名称作为声明。但是,我需要能够在整个应用程序中注入或以某种方式访问​​连接字符串列表,以便我可以获得用户连接到的数据库的连接字符串。另外,我需要能够提供 entity framework.

的连接字符串

appsettings.json 在存储和访问 ConnectionStrings

方面与 web.config 具有相同的功能
{
  "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;
    }