Reputation: 815
I'm designing a database that it's not totally defined yet, and as the project goes, it won't be defined very soon. However, the project will be online very soon, and database will be changing online. So, I need be prepared to database changes. Add tables, add columns, whatever.
I'm not used to Entity Framework, but I already tried all approaches (code first, database and model first) and I like most the Model First approach, cuz I'm not used to relations yet and Model First do that for me.
The problem is: my server is Windows Azure, and I have to script SQL Azure (I still wonder why Microsoft changed that.........)
So, my question is: - What should I do, step-by-step, to update my Model and update my database when Model changes?
Upvotes: 0
Views: 441
Reputation: 36816
What I do is
Upvotes: 2