在程序集中找不到上下文类型。 ASP.NET MVC4

时间:2013-10-20 09:47:16

标签: c# asp.net asp.net-mvc-4 .net-assembly ef-migrations

在这里遵循本教程(根据教程需要客户数据库而不是电影): http://www.asp.net/mvc/tutorials/mvc-4/getting-started-with-aspnet-mvc4/adding-a-new-field-to-the-movie-model-and-table

但是,当我尝试运行迁移命令时,遇到以下错误: “在程序集'MvcVault'中找不到上下文类型'MvcCustomer.Models.CustomerDbContext'。”

这是我的客户模式:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data.Entity;
namespace MvcVault.Models
{
    public class Customer
    {
        public int ID { get; set; }
        public string FirstName { get; set; }
        public string LastName { get; set; }
        public DateTime Born { get; set; }
        public int Telephone { get; set; }
        public string Email { get; set; }
    }

    public class CustomerDBContext : DbContext
    {
        public DbSet<Customer> Customers { get; set; }
    }
}

我尝试过第一次迁移命令的各种组合,包括:

“启用 - 迁移-ContextTypeName MvcCustomer.Models.CustomerDbContext”

“Enable-Migrations -ContextTypeName MVCCustomer.Models.CustomerDbContext”

无论如何,我对这一切都是全新的,我不知所措。当我在Tute之后对Movies模型进行编码时,我能够成功地完成这些教程,并且如果我更改了名称等,就不知道为什么它不起作用...

任何帮助都会被贬低!谢谢你:)

3 个答案:

答案 0 :(得分:0)

您没有MvcCustomer命名空间。从您的代码中可以清楚地看到您使用的是MvcVault命名空间。改变这个:

Enable-Migrations -ContextTypeName MvcCustomer.Models.CustomerDbContext

对此:

Enable-Migrations -ContextTypeName MvcVault.Models.CustomerDbContext

它应该有效。

或者,您可以将MvcVault更改为MvcCustomer。

答案 1 :(得分:0)

这是迟到的回复,但可能会在将来帮助某人。

从Web.config中删除连接字符串,如果它们不止一个且不需要。只保留一个。 尝试在Package Manager Console中运行default命令。 比如Enable-Migrations或 要使用自动迁移,请使用此命令Enable-Migrations -EnableAutomaticMigrations

答案 2 :(得分:0)

在我的项目中,我拼写错误的项目名称,所以根据培训文档,它找不到类,尝试只使用

Enable-Migrations -ContextTypeName CustomerDBContext

有时VS可以搜索它,如果这样可行,你的命名空间可能不会跟随这本书