After migrating to Entity Framework 6 I get an error when executing unit tests on the build server.
I\'m using the DropCreateDatabaseIfModelChanges
initiali
This is throwing because you have migrations enabled and you are using the DropCreateDatabaseIfModelChanges initializer. Entityframework does not support using this initializer with migrations. You have two options:
or