无法首先使用EF-Code重新创建数据库

时间:2012-05-12 07:57:26

标签: entity-framework ef-code-first

我正在努力学习EF Code first。最初我在ModelClass上使用DataAnnotation尝试了所有约束。工作正常 但现在我使用Fluent API使用独立配置文件尝试相同但它无法重新创建数据库并抛出此错误

  

无法检查模型兼容性,因为数据库不包含模型元数据。只能检查使用Code First或Code First Migrations创建的数据库的模型兼容性。

这是我的模型

public Class User
{
    public string UserID { get; set; }
    public string Username { get; set; }
    public string Password { get; set; }
}

这是我的DbContext

public class AppContext : DbContext
{
    public DbSet<User> Users { get; set; }

    //Public constructor to Call DropCreateDatabaseIfModelChanges method
    public AppContext()
    { 
        //Calling the Method to ReCreate the database
        Database.SetInitializer(new DropCreateDatabaseIfModelChanges<AppContext>());
    }

    //Overriding OnModelCreating Method to Configure the Model using Fluent API
    protected override void OnModelCreating(DbModelBuilder modelBuilder)
    {
         modelBuilder.Configuration.Add(new UserConfiguration());
    }
}

这是我的UserConfiguration类

public class UserConfiguration : EntityTypeConfiguration<User>
{
     public UserConfiguration()
     {
          //Using Fluent API to configure Model
          HasKey(x => x.UserID);
          Property(x => x.Username).IsRequired().HasMaximumLength(50);
          Property(x => x.Password).IsRequired().HasMaximumLength(50);

     }
}

我无法弄清楚我错在哪里。任何建议都很明显。

注意:我使用的是EF 4.3.1

修改
如果我将配置直接放在Fluent API方法中,那么OnModelCreating运行良好,即

//Overriding OnModelCreating Method to Configure the Model using Fluent API
    protected override void OnModelCreating(DbModelBuilder modelBuilder)
    {
         //Instead of Standalone Configuration file
         //modelBuilder.Configuration.Add(new UserConfiguration());

         //putting configuration here only
          modelBuilder.Entity<User>().HasKey(x => x.UserID);
          modelBuilder.Entity<User>().Property(x => x.Username).IsRequired().HasMaximumLength(50);
          modelBuilder.Entity<User>().Property(x => x.Password).IsRequired().HasMaximumLength(50);
    }

但是我不知道为什么它不使用独立配置文件,即UserConfiguration类。请提出建议

1 个答案:

答案 0 :(得分:0)

错误发生在应用程序的其他部分,由于创建了数据库模式,但表dbo._MigrationHistory无法在sqlServer上创建,即为什么Codefirst无法删除数据库因为所需信息不存在。当我删除数据库时,它已经工作了,但我认为浏览器正在显示缓存的数据。当我重新启动系统时,一切都很顺利。