美文网首页C#.Net微说集Asp.net开发
EF codefirst使用 Enable-Migrations

EF codefirst使用 Enable-Migrations

作者: 张中华 | 来源:发表于2017-10-28 23:49 被阅读32次
    PM> Enable-Migrations
    Join-Path : 无法将参数绑定到参数“Path”,因为该参数是空值。
    所在位置 F:\MyBlogNew\MyBlogNewApi\packages\EntityFramework.6.2.0\tools\EntityFramework.psm1:715 字符: 27
    +     $toolsPath = Join-Path <<<<  $installPath tools
        + CategoryInfo          : InvalidData: (:) [Join-Path], ParameterBindingValidationException
        + FullyQualifiedErrorId : ParameterArgumentValidationErrorNullNotAllowed,Microsoft.PowerShell.Commands.JoinPathCommand
     
    Join-Path : 无法将参数绑定到参数“Path”,因为该参数是空值。
    所在位置 F:\MyBlogNew\MyBlogNewApi\packages\EntityFramework.6.2.0\tools\EntityFramework.psm1:782 字符: 73
    +     $utilityAssembly = [System.Reflection.Assembly]::LoadFrom((Join-Path <<<<  $ToolsPath EntityFramework.PowerShell.Utility.dll))
        + CategoryInfo          : InvalidData: (:) [Join-Path], ParameterBindingValidationException
        + FullyQualifiedErrorId : ParameterArgumentValidationErrorNullNotAllowed,Microsoft.PowerShell.Commands.JoinPathCommand
     
    不能对值为空的表达式调用方法。
    所在位置 F:\MyBlogNew\MyBlogNewApi\packages\EntityFramework.6.2.0\tools\EntityFramework.psm1:783 字符: 50
    +     $dispatcher = $utilityAssembly.CreateInstance <<<< (
        + CategoryInfo          : InvalidOperation: (CreateInstance:String) [], RuntimeException
        + FullyQualifiedErrorId : InvokeMethodOnNull
     
    Join-Path : 无法将参数绑定到参数“Path”,因为该参数是空值。
    所在位置 F:\MyBlogNew\MyBlogNewApi\packages\EntityFramework.6.2.0\tools\EntityFramework.psm1:812 字符: 19
    +         (Join-Path <<<<  $runner.ToolsPath EntityFramework.PowerShell.dll),
        + CategoryInfo          : InvalidData: (:) [Join-Path], ParameterBindingValidationException
        + FullyQualifiedErrorId : ParameterArgumentValidationErrorNullNotAllowed,Microsoft.PowerShell.Commands.JoinPathCommand
     
    PM> Install-Package EntityFramework 6.0.0
    Install-Package : 在活动的解决方案中未找到兼容的项目。
    所在位置 行:1 字符: 16
    + Install-Package <<<<  EntityFramework 6.0.0
        + CategoryInfo          : InvalidOperation: (:) [Install-Package], InvalidOperationException
        + FullyQualifiedErrorId : NuGetNoCompatibleProjects,NuGet.PowerShell.Commands.InstallPackageCommand
     
    

    解决方案:
    将原有的EF框架删除,替换,再引入最新的(不知道需不需要最新的),获取重新引入一次就好了,然后再执行就好了。

    相关文章

      网友评论

        本文标题:EF codefirst使用 Enable-Migrations

        本文链接:https://www.haomeiwen.com/subject/vqvspxtx.html