Using Entity Framework Migrations (Beta1), using Update-Database command is all good during development.
But when the application is running on some customer\'s serv
Another options for this issue is to add
Database.SetInitializer(new MigrateDatabaseToLatestVersion());
line to your Global.asax Application_Start method.
Global.asax
Application_Start