0

输入的代码

======================================
PM> Enable-Migrations -ContextTypeName MvcMovie.Models.MovieDBContext

Problem
=======================================
Enable-Migrations : A parameter cannot be found that matches parameter name 
'ContextTypeName'.
At line:1 char:19
+ Enable-Migrations -ContextTypeName MvcMovie.Models.MovieDBContext
+ ~~~~~~~~~~~~~~~~
+ CategoryInfo          : InvalidArgument: (:) [Enable-Migrations], Parameter 
   BindingException
+ FullyQualifiedErrorId : NamedParameterNotFound,Enable-Migrations

有人能告诉我这个问题的原因是什么吗?

问题发生时我正在关注本教程

4

2 回答 2

1

确保您的默认项目设置正确。然后输入不带任何参数的命令“Enable-Migrations”。这将为您的默认项目启用 Code First 迁移。来自 http://forums.asp.net/t/1855667.aspx/1?Mvc+4+Enable+Migrations+Problem

于 2013-01-08T03:43:01.543 回答
1

我得到了同样的错误,问题是因为你MovieDbContextMovie.cs类中定义了。在 Models 文件夹下创建另一个类并复制DBContextover 的代码,如下所示:

using MvcMovie.Models;
using System;
using System.Collections.Generic;
using System.Data.Entity;

namespace MvcMovie.Models
{
    public class MovieDBContext : DbContext
    {
        public DbSet<Movie> Movies { get; set; }
    }
}

然后跑了

Enable-Migrations -ContextTypeName MvcMovie.Models.MovieDBContext

那应该解决它。

于 2013-06-06T16:23:55.860 回答