Reputation: 3616
I am trying to find the best way to synchronize/migrate EF Code First databases from localhost to SQL Azure without using EFCF Migrations. I know that I could use this approach, but I want to look at different, less automagic options.
The following process, or variations of such, is the one I'd like to follow:
Using MySQL, this is a breeze. The MySQL Workbench can synchronize a schema model to the database in question, plain and simple. In this case, I don't have a schema model per se, but the database on localhost generated by EFCF could be concidered the schema.
Which tools are available to perform this task? Is it possible to do this using SSMS?
Update: How I did it: After the tip from Craig to use a Visual Studio 2012 Database Project, I did the following:
This was exactly what I was looking for
Upvotes: 4
Views: 677
Reputation: 36856
The Visual Studio 2012 database project can do it, I do it all the time.
Upvotes: 3
Reputation: 5761
It's not free, but Red-Gate's SQL Compare would handle the schema replication
Upvotes: 1