0

在这里学习本教程(根据教程想要一个客户数据库而不是电影): http ://www.asp.net/mvc/tutorials/mvc-4/getting-started-with-aspnet-mvc4/adding-a -新领域到电影模型和表格

但是,当我尝试运行迁移命令时,遇到以下错误:“在程序集 '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”

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

无论如何,我对这一切都是全新的,我很茫然。在按照 tutes 编写电影模型时,我能够成功完成这些教程,并且不知道为什么如果我更改名称等它不起作用......

任何帮助将不胜感激!非常感谢你 :)

4

3 回答 3

0

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

Enable-Migrations -ContextTypeName MvcCustomer.Models.CustomerDbContext

对此:

Enable-Migrations -ContextTypeName MvcVault.Models.CustomerDbContext

它应该工作。

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

于 2013-10-21T03:44:32.690 回答
0

回复晚了,但将来可能会对某人有所帮助。

如果连接字符串不止一个且不需要,则从 Web.config 中删除它们。只保留一个。尝试在包管理器控制台中运行默认命令。喜欢Enable-MigrationsOR 要使用自动迁移,请使用此命令Enable-Migrations -EnableAutomaticMigrations

于 2014-10-20T07:03:04.150 回答
0

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

Enable-Migrations -ContextTypeName CustomerDBContext

有时 VS 可以搜索它,如果这可行,你的命名空间可能没有遵循这本书

于 2017-02-16T21:23:27.253 回答