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
|
feedback
|
|
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. | |||
|
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. | |||
|
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:
| |||
|
feedback
|