标签:contex add width 项目 student public include setting 实体
1.创建项目


创建Data文件夹
创建实体类Students/cs

public class Students { public Guid Id { get; set; } public string Name { get; set; } public int Age { get; set; } }
创建MyDbContext

public class MyDbContext:DbContext { public MyDbContext(DbContextOptions<MyDbContext> options):base(options) { } public DbSet<Students> Students { get; set; } }
在appsetting.json配置连接字符串

{ "Logging": { "IncludeScopes": false, "LogLevel": { "Default": "Warning" } }, "ConnectionStrings": { "DefaultConnection": "server=.;database=Students;uid=sa;pwd=123456;" } }
使用 code first 创建数据库


输入命名
Add-Migration init
标签:contex add width 项目 student public include setting 实体
原文地址:https://www.cnblogs.com/mi21/p/11268361.html