如何启用迁移以在MVC4中更新我的数据库?

时间:2013-07-29 11:34:12

标签: c# asp.net asp.net-mvc asp.net-mvc-4 migration

我正在使用Visual Studio 2012中的MVC4进行项目,并在表格中添加了一列。

现在,当我想调试我的项目时,错误说使用迁移来更新我的数据库。

我必须做什么?

我一直在搜索并找到一些方法,如:

protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
  Database.SetInitializer<ResTabelaIndex>(null);
}

但不知道如何以及在何处实施此功能...已在app_startglobal.asax等尝试过......

我发现的是,从nuget直接在控制台中启用迁移。

但我无法做到这一点。

我使用的命令:

Enable-Migrations -EnableAutomaticMigrations

==&GT;控制台说发现了多个上下文。        要启用,请Enable-Migrations -ContextTypeName NameOfTheNamespace.Models.DefaultConnection

但是我不知道-ContextTypeName是什么,已经尝试了很多但是无法理解。

My Model Code:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data.Entity;
using System.Data.Entity.ModelConfiguration.Conventions;
using System.Data.Entity.Migrations;
using System.ComponentModel.DataAnnotations;
using System.Data.Entity.Infrastructure;

namespace Vista.Models
{
    public class TabelaIndex
    {
        public int ID { get; set; }
        public string n_empresa { get; set; }
        public string titulo{ get; set; }
        public string url { get; set; }
        public string imagens { get; set; }
    }

    public class DefaultConnection : DbContext
    {
        public DbSet<TabelaIndex> ResTabelaIndex { get; set; }
    }

}

4 个答案:

答案 0 :(得分:26)

错误是说你有两个上下文。当您首次使用MVC 4创建项目时,Visual Studio默认为SimpleMembership创建上下文(查看Models / Account.cs)或为ctrl+f创建UsersContext,您可以如果您未使用SimpleMembership,请删除此文件。 删除此上下文后,请继续将以下内容添加到DefaultConnection类:

protected override void OnModelCreating(DbModelBuilder builder)
{
   Database.SetInitializer(new MigrateDatabaseToLatestVersion<DefaultConnection,Configuration>());
}

如果您正确启用了迁移,那么您还应该有一个名为Migrations的文件夹,其中包含Configuration类,其构造函数应如下所示(如果您要启用自动迁移):

public Configuration()
{
   AutomaticMigrationsEnabled = true;
}

答案 1 :(得分:25)

命令:

  1. enable-migrations default context
  2. add-migration InitialCreate(用于生成快照)
  3. add-migration InitialCreate(应用快照)
  4. update-database
  5. update-database -verbose
  6. 详细的探索将在这里: http://www.dotnet-tricks.com/Tutorial/entityframework/R54K181213-Understanding-Entity-Framework-Code-First-Migrations.html

答案 2 :(得分:4)

尝试在控制台中输入:

Enable-Migrations -ContextTypeName Vista.Models.DefaultConnection

Vista.Models.DefaultConnection是您的上下文(继承自DbContext的类)。

答案 3 :(得分:0)

如果您进行小规模更改,则无需迁移。您可以使用sql脚本将列添加到数据库上的任何表,并将属性添加到模型和删除元数据表。 (毫无疑问,备份数据库)。

或者您可以使用以下迁移:aspnet-mvc-4-entity-framework-scaffolding-and-migrations