将使用如下的实体框架核心代码擦除数据库中的现有表格"不是"包含DbContext类的一部分?
这是我的所有代码。没有Db初始化器。没有启用迁移。
public class EmailServiceDbContext : DbContext
{
public EmailServiceDbContext(DbContextOptions options):base(options)
{
;
}
public DbSet<CourierReportsDeliveriesView> CourierReportsDeliveriesView { get; set; }
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);
}
}
配置:
// Add DbContext
services.AddDbContext<EmailServiceDbContext>(options => options
.UseSqlServer(Configuration.GetConnectionString("DbConnectionString")));