码迷,mamicode.com
首页 > Web开发 > 详细

.Net Mvc Automated Migration 数据迁移

时间:2016-12-28 17:07:27      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:blog   tin   conf   生成   code   class   test   data   包管理器   

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 数据迁移

标签:blog   tin   conf   生成   code   class   test   data   包管理器   

原文地址:http://www.cnblogs.com/qzxj/p/6229595.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!