Reputation: 4610
Is it possible to add a migration file using DbMigrator in code instead of through the powershell commands?
Upvotes: 0
Views: 423
Reputation: 364249
DbMigrator
is class for running migrations. Classes for creating migration are in System.Data.Entity.Migrations.Design
. ToolingFacade
is called by powershell commands. Other classes represents low level API for creating migration code.
Upvotes: 0