我正在使用Visual Studio 2012中的MVC4进行项目,并在表格中添加了一列。
现在,当我想调试我的项目时,错误说使用迁移来更新我的数据库。
我必须做什么?
我一直在搜索并找到一些方法,如:
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
Database.SetInitializer<ResTabelaIndex>(null);
}
但不知道如何以及在何处实施此功能...已在app_start
,global.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; }
}
}
答案 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)
命令:
enable-migrations default context
add-migration InitialCreate
(用于生成快照)add-migration InitialCreate
(应用快照)update-database
update-database -verbose
答案 2 :(得分:4)
尝试在控制台中输入:
Enable-Migrations -ContextTypeName Vista.Models.DefaultConnection
Vista.Models.DefaultConnection是您的上下文(继承自DbContext的类)。
答案 3 :(得分:0)
如果您进行小规模更改,则无需迁移。您可以使用sql脚本将列添加到数据库上的任何表,并将属性添加到模型和删除元数据表。 (毫无疑问,备份数据库)。
或者您可以使用以下迁移:aspnet-mvc-4-entity-framework-scaffolding-and-migrations