I've worked on ASP.NET MVC site using Entity Framework code first approach. I've finished my initial website and uploaded it to Windows Azure.
Now, I wish to continue developing the site and enhance the database structure. The problem is that because it was created as code-first when I'll modify my entities - the database will re-created so my data will be lost.
My questions is - how can I get the live data from windows azure back to my local machine (registered accounts, posts etc.) and how can I continue developing my site without loosing that data. To be more specific - I wish to update the database structure in Azure to the new structure without losing the data inside it. I know about the entity framework DB strategics, but didn't saw anything that saves the data.
Thanks for your help!