EF核心。它会删除数据库中的现有表格吗?不是" DbContext类的一部分?

时间:2017-08-10 13:19:49

标签: entity-framework entity-framework-core

将使用如下的实体框架核心代码擦除数据库中的现有表格"不是"包含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")));

0 个答案:

没有答案