I am studing model first approach in Entity Framework. I found all data gets wiped out whenever a re-generation of the database from the model occurs. Is model-first really a useful approach or is there a way to fix this

link|improve this question

0% accept rate
feedback

3 Answers

One of the way to deal with this problem is to seed your data i.e. populate the database with some test data after EF creates it. See http://binuity.com/blog/2011/03/28/ef4-seeding-data-on-each-dropcreatedatabaseifmodelchanges/

Yet another way is to have tools that would try to update database instead of re-creating it.

link|improve this answer
feedback

Entity Framework drops your database and re-creates it from scratch. That's just the way it works. Microsoft is working on a migration strategy that will allow you to migrate changes, but that is not going to be ready until the next major version.

There are some third party tools that attempt to solve this problem, but I wouldn't be too dependant upon them.

link|improve this answer
feedback

Model first doesn't delete your data automatically. It creates SQL script for database creation and if you execute it, it will probably drop all your tables but you can change the script manually or you can use some advanced tool for database upgrade:

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.