ef脚手架时出现“指定要使用的项目文件...”错误

问题描述

当我尝试在 PMC 中执行 scaffold 命令时,出现以下错误

    dotnet ef dbcontext scaffold "server=127.0.0.1:3308;uid=root;pwd=root;database=newtest_db" MysqL.EntityFrameworkCore -o MysqLDataOperations -f

dotnet : Specify which project file to use because this 'D:\Projects\DotNet5_Docker' contains more than one project file.
At line:1 char:1
 dotnet ef dbcontext scaffold "server=127.0.0.1:3308;uid=root;pwd=root 
     CategoryInfo          : NotSpecified: (Specify which p...e project file.:String) [],remoteexception
     FullyQualifiedErrorId : NativeCommandError

也可以通过添加 -p 项目名称 -s 项目名称来执行。 仍然重复同样的错误

由于此文件夹包含多个项目和解决方案,因此我创建了一个新项目并尝试了相同的方法,因此出现以下错误

dotnet : Could not execute because the specified command or file was not found.
At line:1 char:1
 dotnet ef dbcontext scaffold "server=127.0.0.1:3308;uid=root;pwd=root ...
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     CategoryInfo          : NotSpecified: (Could not execu... was not found.:String) [],remoteexception
    + FullyQualifiedErrorId : NativeCommandError
 
Possible reasons for this include:
   You misspelled a built-in dotnet command.
   You intended to execute a .NET program,but dotnet-ef does not exist.
   You intended to run a 
global tool,but a dotnet-prefixed executable with this name Could not be found on the PATH.

我正在使用 Visual Studio 2019。也在 Powershell 中尝试了相同的方法。我的目的是使用 MysqL.Data.EntityframeworkCore

从已经存在的 MysqL 数据库中实现数据库优先的方法

PMC Error for first project

PMC Error for another project

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...