gpt4 book ai didi

asp.net-core - dnx : Error: Unable to load application or execute command 'ef'

转载 作者:行者123 更新时间:2023-12-04 05:29:47 25 4
gpt4 key购买 nike

我正在使用 ASP.NET 5 Beta 8 与 Entity Framework 7测试版 8

我创建了一个新的类库包。

我运行了以下安装包提示:

Install-Package EntityFramework.SqlServer -Pre
Install-Package EntityFramework.Commands -Pre
Install-Package Microsoft.AspNet.Identity.EntityFramework -Pre

我的 project.json
{
"version": "1.0.0-*",
"description": "MARS Class Library",
"authors": [ "myname" ],
"tags": [ "" ],
"projectUrl": "",
"licenseUrl": "",
"frameworks": {
"dnx451": { }
},
"dependencies": {
"EntityFramework.Commands": "7.0.0-beta8",
"EntityFramework.SqlServer": "7.0.0-beta8",
"Microsoft.AspNet.Identity.EntityFramework": "3.0.0-beta8",
}
}

在我的包管理器控制台中,我导航到我的 src\project project.json所在的目录位于并运行任何 dnx ef命令例如:
dnx ef migrations --help

或者
 dnx ef migrations add InitialMigration

但是我收到以下错误:

dnx : Error: Unable to load application or execute command 'ef'.

At line:1 char:1

  • dnx ef migrations --help

  • ~~~~~~~~~~~~~~~~~~~~~~~~

    • CategoryInfo : NotSpecified: (Error: Unable t...e command 'ef'.:String) [], RemoteException
    • FullyQualifiedErrorId : NativeCommandError


我有一个 DBContext 类和模型类,但错误似乎与无法理解它们的关键字 ef 有关。根本。

我错过了什么?

最佳答案

解决方案:

添加 ef命令到您的 project.json

   "commands": {
"ef": "EntityFramework.Commands"
}

关于asp.net-core - dnx : Error: Unable to load application or execute command 'ef' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33518501/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com