在Asp .net core 中使用配置mysql
Posted bleso
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Asp .net core 中使用配置mysql相关的知识,希望对你有一定的参考价值。
-
下载mysql的providor
-
在appsettings.json中配置连接字符串
"ConnectionStrings": { "MySql": "server=******;user=root;password=******;database=TourismMallMS" },
-
在startup中配置服务
services.AddDbContextPool<AppDbContext>(options => { options.UseMySql(Configuration["ConnectionStrings:MySql"], new MySqlServerVersion(new Version(8, 0, 25))); });
以上是关于在Asp .net core 中使用配置mysql的主要内容,如果未能解决你的问题,请参考以下文章
ASP.NET Core 项目中的 MySql 连接字符串错误
如何在 ASP.NET Core 2.2 中使用 IValidateOptions 验证配置设置?