c# – 如何在visual studio 2015中管理EF 6迁移?

前端之家收集整理的这篇文章主要介绍了c# – 如何在visual studio 2015中管理EF 6迁移?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用Visual Studio 2013最新更新,使用EntityFramework -Version 6.1.2启动了一个新的MVC项目.我进行了几次迁移并更新了数据库.之后,我在另一台计算机上检出该项目,并使用Visual Studio 2015 CTP 6打开.

如果我进入软件包管理器控制台,并尝试运行任何迁移命令,则无法识别它们:

add-migrations : The term ‘add-migrations’ is not recognized as the name of a cmdlet,function,script file,or operable program. Check the spelling of the name,or if a path was included,verify that the path is correct and try again.

如何使用Visual Studio 2015中的Entity Framework 6来管理我的迁移?

解决方法

您是否尝试卸载并重新安装EntityFramwork NuGet软件包?我有与描述相同的问题,它解决了它.
原文链接:https://www.f2er.com/csharp/94179.html

猜你在找的C#相关文章