运行命令Enable-Migrations
Add-Migration X
,其中X是您要为此迁移提供的任何名称
但是在迁移之后,如果我创建任何新表,为什么它不在db中生成
答案 0 :(得分:1)
需要在dbcontext中设置表格,如:
public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
{
public DbSet<User> User {get;set;}
}
public class User
{
[key]
public int id {get;set;}
public string name {get;set;}
}
&#13;
创建迁移并更新数据库