i am writing a simple CMS over ASP.NET MVC framework (for college final project).my problem is with module’s data-migration strategy.as each module will update the database schema when it is installed , a database migration mechanism must be implemented in module installation system.ok , data-migration in entity framework is already there (thanks to MS) , but the migration commands run in package manager console.is there any way to run a Data-Migration code Programmatically?
any help is very appreciated.
i am writing a simple CMS over ASP.NET MVC framework (for college final project).my
Share
This class exposes the EF migrations in code:
System.Data.Entity.MigrateDatabaseToLatestVersion
In EF, migrations work on a whole database though – not modular parts of one.
Just found this class too:
System.Data.Entity.Migrations.DbMigrator