首页 > 解决方案 > 删除迁移在 VS 2015 中不起作用

问题描述

我创建了一个尚未应用的迁移(例如,我还没有为创建的迁移运行“更新数据库”)。我想使用“Remove-Migration”命令删除这个新的未应用的迁移,但每次我在控制台中键入它时,它都会给我这个错误:

PM> Remove-Migration
Remove-Migration : The term 'Remove-Migration' 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.
At line:1 char:1
+ Remove-Migration
+ ~~~~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (Remove-Migration:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

你能帮我解决这个问题吗?谢谢你。

标签: c#entity-framework

解决方案


推荐阅读