如何以正确的方式添加新模型 MVC?我有一个模型UsersContext
。我想创建另一个 - NewContext
。
下面的代码是否可以正常工作?也许有更好的解决方案来在现有数据库中创建模型?究竟是什么意思UsersContext
和NewContext
代码?
public class NewContext : DbContext
{
public NewContext ()
: base("DefaultConnection")
{
}
public DbSet<test1> test1{ get; set; }
public DbSet<test2> test2{ get; set; }
public DbSet<test3> test3{ get; set; }
}
(...)