Reputation: 4862
I'm building an application that will be exposed to the public. So the database will be filled with data. I'm not sure how to extend the model afterwards. Locally after any changes of the model the database get's recreated. How can add properties to the existing model, without recreate the entire database ?
Upvotes: 0
Views: 661
Reputation: 12874
Take a look at EntityFramework CodeFirst Migration, for modifying your schema.
Upvotes: 1