In my application I enable Code First Migrations with some migrations, Also I use SQL Server Compact for integration test.
When I run my tests, Entity Framework crea
In case someone still struggles to fix the issue.
The code that follows works for me: add-migration MyFirstMigration
add-migration MyFirstMigration
Meanwhile add-migration "MyFirstMigration" with the migration name ramped in quote doesn't work.
add-migration "MyFirstMigration"