如何在ASP.net Core中基于环境添加DbContext

时间:2016-12-21 16:27:36

标签: c# asp.net-core entity-framework-core

这就是我目前在Startup.cs中的ConfigureServices方法中添加DbContext的方式:

public void ConfigureServices(IServiceCollection services)
{
    .....

    services.AddDbContext<MyDbContext>(options =>
        options.UseMySQL(Configuration.GetConnectionString("DefaultConnection")));

    .....

}

我的连接字符串存储在我的appsettings.json文件中,例如:

{
    ....
  "ConnectionStrings": {
    "DefaultConnection": "server=localhost;user id=root;password=root;database=mydb;sslmode=none"
  }

  ....

}

如果我想切换连接的数据库,如果是“开发”与“生产”环境,如何使“services.AddDbContext()”切换数据库?

1 个答案:

答案 0 :(得分:7)

您可以在不同的appsettings文件中配置不同的环境连接字符串,如下所示 -

对于测试环境,请使用appsettings。测试 .json

 "Data": {
    "MyDbContext": {
      "ConnectionString": "" /*<<== TestDatabase connection string */
    },

对于prod环境,请使用appsettings。 prod .json

 "Data": {
    "MyContext": {
      "ConnectionString": "" /*<<== ProdDatabase connection string */
    },

使用ASPNETCORE_ENVIRONMENT环境变量将当前环境设置为Test或Prod值。

在初创公司中,您可以像这样使用 -

     services.AddDbContext<MyContext>(options =>
options.UseSqlServer(Configuration["Data:MyContext:ConnectionString"]));