时间:2021-07-01 10:21:17 帮助过:4人阅读
二:还原包,
CLI 命令 dotnet restore
三:DBFirst 创建脚手架,映射
CLI 命令:dotnet ef dbcontext scaffold "Server=127.0.0.1;port=3306;user=xxx;password=xxx;database=db" Pomelo.EntityFrameworkCore.MySql [-o 输出到文件夹目录] [-t 输出表的名字] [-t 输出表的名字]..
【dotnet ef dbcontext scaffold "Server=127.0.0.1;port=3306;user=xxx;password=xxx;database=db" Pomelo.EntityFrameworkCore.MySql -o models -t table1 -t table2.. 】
然后直接通过上下文对象就可以直接访问啦
using (var db = new dbContext()) { db.Table1.Take(100).ToList(); }
:修改 dbContext 中的连接字符串到配置文件
.NET Core3.0 EF 连接 MySql
标签:clu nal port pac tor word 创建 字符串 store