The model backing the \'MyDbContext\' context has changed since the database was created. Consider using Code First Migrations to update the database (http://
In my case this error was caused by the existence of the _MigrationsHistory table in the database. Deleting that table fixed the problem. Not sure how that table got into our test environment database.