Reputation: 842
How do you run a code first entity framework migration without changing anything in the datamodel which would cause a migration to be created? I just want to run the seed method again because I added things to it.
Upvotes: 37
Views: 18285
Reputation: 5314
If you just need to run Seed()
again, and nothing has changed that would cause a new migration to be added, just call Update-Database
again with no flags and it will say 'No pending migrations', and run Seed()
again for you. Seed()
is called every time the DB is updated, regardless if there are new migrations or not.
Upvotes: 69