我对控制台很陌生。我已经成功地安装了KVM,并试图在我的ASP.NET 5应用程序中创建一个迁移。
当我运行“get”时,会得到以下异常:
k.cmd : System.ArgumentNullException: Value cannot be null.
At line:1 char:2
+ k <<<< ef
+ CategoryInfo : NotSpecified: (System.Argument...cannot be null.:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
Parameter name: appEnv
at Microsoft.Data.Entity.Utilities.Check.NotNull[T](T value, String parameterName)
at Microsoft.Data.Entity.Commands.Program..ctor(IServiceProvider serviceProvider, IApplic
ationEnvironment appEnv, ILibraryManager libraryManager)我在正确的文件夹中,并且运行了kpm restore。我不知所措。
发布于 2015-03-09 19:00:07
将EntityFramework.Commands的依赖关系从7.0.0-*切换到7.0.0-beta3使其工作。
https://stackoverflow.com/questions/28908088
复制相似问题