entity-framework – 术语’scaffold-dbcontext’不被识别为cmdlet,函数,脚本文件或可操作程序的名称

前端之家收集整理的这篇文章主要介绍了entity-framework – 术语’scaffold-dbcontext’不被识别为cmdlet,函数,脚本文件或可操作程序的名称前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当尝试使用asp.net核心这个命令进行脚手架时

scaffold-dbcontext “Data Source=(local);Initial
Catalog=MyDb;Integrated Security=True;”
Microsoft.EntityFrameworkCore.sqlserver -outputdir Models

给出了这个错误.

scaffold-dbcontext : The term ‘scaffold-dbcontext’ 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
+ scaffold-dbcontext “Data Source=(local);Initial Catalog=MyDB;In …
+ ~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (scaffold-dbcontext:String) [],CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException

我尝试过解决方here,但它对我不起作用.

知道原因/治疗方法是什么吗?

解决方法

>确保在project.json文件“Microsoft.EntityFrameworkCore.Tools.DotNet”:“1.0.0-preview3-final”中可以使用它.

>在程序包管理器控制台中运行该命令

这就是它的全部功能

原文链接:https://www.f2er.com/aspnet/247695.html

猜你在找的asp.Net相关文章