首页 > 学院 > 开发设计 > 正文

MVC4学习之官方教程中迁移版本库报错

2019-11-14 14:20:14
字体:
来源:转载
供稿:网友

因工作需要,学习MVC4,但是微软官方教程中迁移版本库步骤在本地测试报错

官方教程地址:http://www.asp.net/mvc/overview/older-versions/getting-started-with-aspnet-mvc4/adding-a-new-field-to-the-movie-model-and-table

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

错误提示
使用“8”个参数调用“CreateInstanceFrom”时发生异常:“Could not load file or assembly 'EntityFramework, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' or one of its dependencies. 系统找不到指定的文件。”
所在位置 F:/PRogramming/NET/MvcMovie/packages/EntityFramework.5.0.0/tools/EntityFramework.psm1:431 字符: 31
+ $domain.CreateInstanceFrom <<<< (
+ CategoryInfo : NotSpecified: (:) [], MethodInvocationException
+ FullyQualifiedErrorId : DotNetMethodTargetInvocation

解决方法
先执行 Install-Package EntityFramework
再执行 Enable-Migrations -ContextTypeName MvcMovie.Models.MovieDBContext


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表