我已经定义了一个类
public class ReportClass
{
public int ID { get; set; }
public int ClassIndex { get; set; }
public string ClassName { get; set; }
public int CompanyID { get; set; }
}
我设置了一个 dbcontext。
public class ReportClassContext : DbContext
{
public DbSet<ReportClass> ReportClasses { get; set; }
}
当我第一次去获取记录时,运行时告诉我数据库表不存在:我检查,发现我的 DbSet 的名称与表不匹配。我切换了名称以匹配:
public class ReportClassContext : DbContext
{
public DbSet<ReportClass> ReportClassesRealTable { get; set; }
}
但它仍在查询不存在的表。
我究竟做错了什么?