我正在按照本教程练习 MVC-4:http ://www.asp.net/mvc/tutorials/mvc-4/getting-started-with-aspnet-mvc4/adding-a-new-field-to-the -电影模型和表格
我没有做同样的例子。我只是把它作为一个指导来尝试我自己的东西。
我遇到了这个问题:
打开包管理器控制台后
尝试为我的上下文启用迁移后,我收到以下错误:
PM> Enable-Migrations -ContextTypeName MvcAuction.Models.AuctionDBContext
Enable-Migrations : A parameter cannot be found that matches parameter name 'ContextTypeName'.
At line:1 char:35
+ Enable-Migrations -ContextTypeName <<<< MvcAuction.Models.AuctionDBContext
+ CategoryInfo : InvalidArgument: (:) [Enable-Migrations], ParameterBindingException
+ FullyQualifiedErrorId : NamedParameterNotFound,Enable-Migrations
任何想法如何解决?