I'm using Azure Sql Databases and Entity Framework Code First 6.1. The whole solution is deployed to Azure Web Site. I have a custom inheritor of DropCreateDatabaseAlways initializer configured for my DbContext.
In future I plan to switch to EF Migrations but it's more convenient at the moment to not worry about migrations in the early state of the project. Though the problem is that everytime database is recreated with 1GB size. I want it to be 100mb by default for the pricing reason. How can I achieve that using my setup?