首页 > 代码库 > .Net Mvc Automated Migration 数据迁移
.Net Mvc Automated Migration 数据迁移
1、打开程序包管理器控制台 PM> enable-migrations –EnableAutomaticMigration:$true
2、项目工程文件中会生成Migrations文件夹
3、找到数据库上下文中的构造函数中,如
public StudentDB() : base("name=StudentDB") { Database.SetInitializer(new MigrateDatabaseToLatestVersion<StudentDB, DataMigrationDemo.Migrations.Configuration>("StudentDB")); }
4、找到Migrations文件夹下的Configuration.cs,在构造函数中输入 AutomaticMigrationDataLossAllowed = true 如
public Configuration() { AutomaticMigrationsEnabled = true; AutomaticMigrationDataLossAllowed = true; ContextKey = "DataMigrationDemo.StudentDB"; }
2在
.Net Mvc Automated Migration 数据迁移
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。