我是Package Manager控制台的新手。我已设法安装KVM,并尝试在我的ASP.NET 5应用程序中创建迁移。
当我运行“k ef”时,我得到以下异常:
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
。我很茫然。
答案 0 :(得分:0)
将EntityFramework.Commands
的相关性从7.0.0-*
切换为7.0.0-beta3
使其正常工作。