当前位置:Gxlcms > 数据库问题 > 使用Entity Framewrok Core连接Mysql

使用Entity Framewrok Core连接Mysql

时间:2021-07-01 10:21:17 帮助过:12人阅读

自从容器开始流行起来后,虽然SqlServer也可以运行在容器中,但SqlServer只有开发版是免费的,查询速度太慢,不能用于生产。所以现在Entity Framewrok Core和mysql搭配成为不错的选择。

通过以下三步可以轻松实现Entity Framewrok Core搭配mysql。

  • 在项目中添加Nuget包:MySql.Data.EntityFrameworkCore

  • 在Setup.cs文件中的ConfigService中配置DbContext,类似下面的代码:

    services.AddDbContext<MyContext>(options =>
                      options.UseMySQL(Configuration.GetConnectionString("bd")));
  • 在appsettings.json添加MySql连接配置

    "ConnectionStrings": {
        "db": "server=localhost;database=dbname;user=username;password=******;"
    }

使用Entity Framewrok Core连接Mysql

标签:dbn   password   运行   实现   生产   set   ddd   serve   local   

人气教程排行