C#/.net EF Core 链接 Mysql

1. 安装相关的 NuGet 的 DLL 包

开发环境:Win10 + VS2019
Mysql 服务器版本:8.0.24

Microsoft.EntityFrameworkCore.Tools
Microsoft.EntityFrameworkCore.Relational
Pomelo.EntityFrameworkCore.MySql

在这里插入图片描述
在这里插入图片描述

另两个一样

2. 生成数据库的实体和 EF 的 DBcontext 对象

在这里插入图片描述

在程序包控制台输入以下命令

Scaffold-DbContext "server=localhost;port=3306;user=user;password=password;database=student" -Provider "Pomelo.EntityFrameworkCore.MySql" -o Models -Context DBClassConext

3. 在 Startup.cs 中添加配置

将自动生成 DBClassConext 文件名替换下面的 YourDbContext

        // This method gets called by the runtime. Use this method to add services to the container.
        // For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940
        public void ConfigureServices(IServiceCollection services)
        {
            services.AddMvc();
            // 依赖注入
            services.AddSingleton<IStudentRepository, MockStudentRepository>();

            // Replace with your connection string.
            var connectionString = "server=localhost;user=root;password=root;database=student";

            // Replace with your server version and type.
            // Use 'MariaDbServerVersion' for MariaDB.
            // Alternatively, use 'ServerVersion.AutoDetect(connectionString)'.
            // For common usages, see pull request #1233.
            var serverVersion = new MySqlServerVersion(new Version(8, 0, 24));

            // Replace 'YourDbContext' with the name of your own DbContext derived class.
            services.AddDbContextPool<DBClassConext>(
                dbContextOptions => dbContextOptions
                    .UseMySql(connectionString, serverVersion)
                    .EnableSensitiveDataLogging() // These two calls are optional but help
                    .EnableDetailedErrors()      // with debugging (remove for production).
            );

        }

将 connectionString 放在配置文件中

在这里插入图片描述

        private readonly IConfiguration _configuration;

        public Startup(IConfiguration configuration)
        {
            _configuration = configuration;
        }
            var serverVersion = new MySqlServerVersion(new Version(8, 0, 24));

            // Replace 'YourDbContext' with the name of your own DbContext derived class.
            services.AddDbContextPool<DBClassConext>(
                dbContextOptions => dbContextOptions
                    .UseMySql(_configuration.GetConnectionString("DBConnection"), serverVersion)
                    .EnableSensitiveDataLogging() // These two calls are optional but help
                    .EnableDetailedErrors()      // with debugging (remove for production).
            );

在 appsettings.json 中添加

在这里插入图片描述

  "ConnectionStrings": {
    "DBConnection": "server=localhost;user=root;password=root;database=student"
  }

参考网址:
[1]: https://blog.csdn.net/weixin_44146294/article/details/110949332
[2]: https://github.com/PomeloFoundation/Pomelo.EntityFrameworkCore.MySql

  • 2
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值