3

我已經升級到Visual Studio Code 1.0.0,我試圖在新版本之前改進我以前在VSCode中工作的ASP.NET Core項目。就配置而言,VSCode看起來非常不同。我曾與this tutorialthese samples合作。我有合理的成功讓我的項目的MVC6方面編譯和工作正常,但EntityFramework 7方面是一個不行。.NET核心1.0和EntityFramework 7不兼容

當我做我的項目dotnet restore,我得到以下錯誤:

Package EntityFramework.Core 7.0.0-rc1-final is not compatible with netcoreapp1.0 (.NETCoreApp,Version=v1.0). 

我與project.json找到解決辦法的希望一直在嘗試更多或更少的隨機,但我似乎沒有取得很大的進展。 netcoreapp1.0仍然太新以至於無法與EntityFramework兼容嗎?有什麼選擇可用?

順便說一句,這是我的project.json。這是從上面提到的HelloMvcApi樣品相當多的股票,但由於增加了EntityFramework.Core依賴:

{ 
    "compilationOptions": { 
    "emitEntryPoint": true, 
    "debugType": "portable" 
    }, 
    "dependencies": { 
    "Microsoft.AspNetCore.Mvc.Core": "1.0.0-*", 
    "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.0-*", 
    "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*", 
    "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", 
    "Microsoft.Extensions.Logging.Console": "1.0.0-*", 
    "EntityFramework.Core": "7.0.0-rc1-final", 
    "Microsoft.NETCore.App": { 
     "type": "platform", 
     "version": "1.0.0-*" 
    } 
    }, 
    "frameworks": { 
    "netcoreapp1.0": { 
     "imports": [ 
     "portable-net45+wp80+win8+wpa81+dnxcore50" 
     ] 
    } 
    }, 
    "tools": { 
    "Microsoft.AspNetCore.Server.IISIntegration.Tools": { 
     "version": "1.0.0-*", 
     "imports": "portable-net45+wp80+win8+wpa81+dnxcore50" 
    } 
    }, 
    "scripts": { 
    "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" 
    } 
} 

回答

8

正如this announcement of breaking changes in RC2提到:

The EntityFramework.* packages and namespaces are changing to Microsoft.EntityFrameworkCore.*

所以你只需要切換你參考指向更新後的版本:

"Microsoft.EntityFrameworkCore": "1.0.0-*", 
+2

肯定有進展。但是現在'dotnet restore' yeilds:'Package Ix-Async 1.2.5與netcoreapp1.0'不兼容,'Package Remotion.Linq 2.0.2與netcoreapp1.0'不兼容。我知道這些與「Microsoft.EntityFrameworkCore」依賴關係有關,因爲我運行了一個快速試用版。有關這些新錯誤的任何想法是或他們的一個單獨的問題? – robbpriestley

+2

好的,我接受了這個答案。從技術上講,我仍然有一個沒有答案的問題,儘管有關聯的問題(正如上面的評論中提到的那樣)。我想我會在Github上發佈它。鏈接是** [這裏](https://github.com/aspnet/EntityFramework/issues/5152)**。也感謝@Pinpoint,但從技術上來說,這個答案似乎更早出現,並且更完整一些。 – robbpriestley