I've build a little WPF demo app which uses EF Code-First to save its data in a SQL CE 4.0 DB. It works fine unless I remove a property from a model object. For example, if I remove "HosteBy" from this class.....

public class Dinner
{
    public int DinnerID { get; set; }
    public string Title { get; set; }   
    public DateTime EventDate { get; set; }
    public string Address { get; set; }
    public string HostedBy { get; set; }

    public virtual ICollection<RSVP> RSVPs { get; set; }
}

...it throws this exception:

The model backing the 'NerdDinners' context has changed since the database was created. Either manually delete/update the database, or call Database.SetInitializer with an IDatabaseInitializer instance. For example, the DropCreateDatabaseIfModelChanges strategy will automatically delete and recreate the database, and optionally seed it with new data.

The error persists even after removing the field "HosteBy" manually from the database. What am I missing here? Do I have to delete/truncate the db or is there another solution?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

take a look at

http://weblogs.asp.net/scottgu/archive/2010/07/16/code-first-development-with-entity-framework-4.aspx

Step 5: Changing our Model

link|improve this answer
Or step 7 in this tutorial ;-) weblogs.asp.net/scottgu/archive/2011/01/11/… The solution is actually quite simple: After you have updated the database (removed/added the necessary fields manually), you must truncate the auto-generated table "EdmMetadata" since it stores a ModelHash in it. That's is. – Mike Jul 8 '11 at 13:11
feedback

If your database contains some strange table with name EdmMetadata your context uses some very basic level of database versioning. When it created the database it stored a hash of your model into this table and each time it builds a model for your application (first time you use the context after restarting your application) it again computes the hash and compares it with the hash stored in that table. It means that any change in your model will result in a different hash and EF will react with the exception you see. Manual change in the database will not help you because the table contains still the old has.

The solutions are:

  • Removing this versioning. It requires removing IncludeMetadataConvention as described here.
  • Updating the hash. It would require to reverse engineer the algorithm for hash computation (for example by Red Gate .NET Reflector, JetBrains dotPeek, SharpDevelop ILSpy or Telerik JustDecompile) and computing new hash from compiled model (or using reflection to read internal property from DbCompiledModel.ModelHash with already computed hash) which you will store in the EdmMetadata table.
  • Manually deleting the database and let EF create a new one - you will lose all data
  • Setting initializer to DropCreateDatabaseIfModelChanges - it will automatically delete the database and create a new one if you change the model - you will lose all data
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.