如何以编程方式更新数据库中的EntityFramework

如何以编程方式更新数据库中的EntityFramework

本文介绍了如何以编程方式更新数据库中的EntityFramework codefirst?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我写一个简单的 CMS 在ASP.NET MVC框架(上大学最后的项目)。我的问题是与模块的数据迁移strategy.as每个模块将更新安装时,数据库架构,数据库迁移机制必须在模块的安装system.ok实施,数据迁移在实体框架已经在那里(感谢MS)但在包管理器运行迁移命令console.is有什么办法可以运行数据迁移 code编程?
任何帮助非常AP preciated。

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.

推荐答案

本类暴露在code中的EF迁移:

This class exposes the EF migrations in code:

System.Data.Entity.MigrateDatabaseToLatestVersion

在EF,迁移整个数据库上运行,但 - 一个不是模块化的部件

In EF, migrations work on a whole database though - not modular parts of one.

刚刚发现这个类太:

System.Data.Entity.Migrations.DbMigrator

这篇关于如何以编程方式更新数据库中的EntityFramework codefirst?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-30 01:53