gpt4 book ai didi

linux - Entity Framework 7 是否适用于 Linux Dot Net Core CLR?

转载 作者:太空狗 更新时间:2023-10-29 11:12:47 25 4
gpt4 key购买 nike

我在试图让一个简单的项目在 Linux 上运行时遇到了巨大的麻烦。我毫不费力地在 Windows 上创建了一个简单的 MVC 应用程序,但是我无法将它迁移到 Linux。起初我认为它是基于平台的,但现在我不这么认为了。

我按照 CentOS 上的说明开始 https://docs.asp.net/en/latest/getting-started/installing-on-linux.html#installing-on-centos-7

我可以让 dnvm 运行和 dnx,但 dotnet 只会运行并退出。 DNX 有点工作,但是当尝试访问 Web 应用程序时,它会停止,不记录任何内容,并且直到强制使用 kill -9 才会退出

接下来,我安装了 Ubuntu 14.04 并运行了命令

sudo sh -c 'echo "deb [arch=amd64] http://apt-mo.trafficmanager.net/repos/dotnet/ trusty main" > /etc/apt/sources.list.d/dotnetdev.list'
sudo apt-key adv --keyserver apt-mo.trafficmanager.net --recv-keys 417A0893
sudo apt-get update
sudo apt-get install dotnet

然后我尝试了 dotnet restore 并得到了这个

Errors in /home/joel/Projects/MVCPrototype/project.json
Package Ix-Async 1.2.5 is not compatible with dnxcore50 (DNXCore,Version=v5.0). Package Ix-Async 1.2.5 supports:
- net40 (.NETFramework,Version=v4.0)
- net45 (.NETFramework,Version=v4.5)
- portable-net45+win8+wp8 (.NETPortable,Version=v0.0,Profile=Profile78)
Package Remotion.Linq 2.0.2 is not compatible with dnxcore50 (DNXCore,Version=v5.0). Package Remotion.Linq 2.0.2 supports:
- net35 (.NETFramework,Version=v3.5)
- net40 (.NETFramework,Version=v4.0)
- net45 (.NETFramework,Version=v4.5)
- portable-net45+win8+wp8+wpa81 (.NETPortable,Version=v0.0,Profile=Profile259)
Package Microsoft.CodeAnalysis.CSharp 1.1.0-rc1-20151109-01 is not compatible with dnxcore50 (DNXCore,Version=v5.0). Package Microsoft.CodeAnalysis.CSharp 1.1.0-rc1-20151109-01 supports:
- net45 (.NETFramework,Version=v4.5)
- portable-net45+win8 (.NETPortable,Version=v0.0,Profile=Profile7)
Package Microsoft.CodeAnalysis.Common 1.1.0-rc1-20151109-01 is not compatible with dnxcore50 (DNXCore,Version=v5.0). Package Microsoft.CodeAnalysis.Common 1.1.0-rc1-20151109-01 supports:
- net45 (.NETFramework,Version=v4.5)
- portable-net45+win8 (.NETPortable,Version=v0.0,Profile=Profile7)
One or more packages are incompatible with DNXCore,Version=v5.0.

NuGet Config files used:
/home/joel/Projects/MVCPrototype/nuget.config
/home/joel/.nuget/NuGet/NuGet.Config

Feeds used:
https://dotnet.myget.org/F/dotnet-core/api/v3/index.json
https://www.myget.org/F/aspnetcirelease/api/v3/index.json
https://api.nuget.org/v3/index.json

所以我运行了这些命令来卸载 APT 版本并获取最新的 SDK

sudo apt-get remove dotnet
wget https://dotnetcli.blob.core.windows.net/dotnet/beta/Installers/Latest/dotnet-host-ubuntu-x64.latest.deb
wget https://dotnetcli.blob.core.windows.net/dotnet/beta/Installers/Latest/dotnet-sharedframework-ubuntu-x64.latest.deb
wget https://dotnetcli.blob.core.windows.net/dotnet/beta/Installers/Latest/dotnet-sdk-ubuntu-x64.latest.deb
sudo dpkg -i dotnet-host-ubuntu-x64.latest.deb
sudo dpkg -i dotnet-sharedframework-ubuntu-x64.latest.deb
sudo dpkg -i dotnet-sdk-ubuntu-x64.latest.deb

然后运行同样的命令,同样的错误。

然后我按照以下步骤操作 http://ef.readthedocs.io/en/latest/platforms/coreclr/getting-started-linux.html#create-a-new-project

项目.json:

{
"dependencies": {
"EntityFramework.Sqlite": "7.0.0-rc1-final",
"EntityFramework.Commands": "7.0.0-rc1-final",
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final"
},
"commands": {
"run": "ConsoleApp",
"ef": "EntityFramework.Commands"
},
"frameworks": {
"dnxcore50": {
"dependencies": {
"System.Console": "4.0.0-beta-*"
}
}
}
}

运行 dotnet restore 并出现同样的错误:

Errors in /home/joel/Projects/EFTest/project.json
Package Ix-Async 1.2.5 is not compatible with dnxcore50 (DNXCore,Version=v5.0). Package Ix-Async 1.2.5 supports:
- net40 (.NETFramework,Version=v4.0)
- net45 (.NETFramework,Version=v4.5)
- portable-net45+win8+wp8 (.NETPortable,Version=v0.0,Profile=Profile78)
Package Remotion.Linq 2.0.1 is not compatible with dnxcore50 (DNXCore,Version=v5.0). Package Remotion.Linq 2.0.1 supports:
- net35 (.NETFramework,Version=v3.5)
- net40 (.NETFramework,Version=v4.0)
- net45 (.NETFramework,Version=v4.5)
- portable-net45+win8+wp8+wpa81 (.NETPortable,Version=v0.0,Profile=Profile259)
Package System.Collections.Immutable 1.1.36 is not compatible with dnxcore50 (DNXCore,Version=v5.0). Package System.Collections.Immutable 1.1.36 supports: portable-net45+win8+wp8+wpa81 (.NETPortable,Version=v0.0,Profile=Profile259)
One or more packages are incompatible with DNXCore,Version=v5.0.

NuGet Config files used:
/home/joel/.nuget/NuGet/NuGet.Config

Feeds used:
https://dotnet.myget.org/F/dotnet-core/api/v3/index.json
https://www.myget.org/F/aspnetcirelease/api/v3/index.json
https://api.nuget.org/v3/index.json

然后我修改了项目以获得最新版本:

{
"dependencies": {
"Microsoft.EntityFrameworkCore.Sqlite": "1.0.0-*",
"Microsoft.EntityFrameworkCore.Commands": "1.0.0-*",
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-*"
},
"commands": {
"run": "ConsoleApp",
"ef": "Microsoft.EntityFrameworkCore.Commands"
},
"frameworks": {
"dnxcore50": {
"dependencies": {
"System.Console": "4.0.0-beta-*"
}
}
}
}

恢复给了我这个:

Errors in /home/joel/Projects/EFTest/project.json
Package Ix-Async 1.2.5 is not compatible with dnxcore50 (DNXCore,Version=v5.0). Package Ix-Async 1.2.5 supports:
- net40 (.NETFramework,Version=v4.0)
- net45 (.NETFramework,Version=v4.5)
- portable-net45+win8+wp8 (.NETPortable,Version=v0.0,Profile=Profile78)
Package Remotion.Linq 2.0.2 is not compatible with dnxcore50 (DNXCore,Version=v5.0). Package Remotion.Linq 2.0.2 supports:
- net35 (.NETFramework,Version=v3.5)
- net40 (.NETFramework,Version=v4.0)
- net45 (.NETFramework,Version=v4.5)
- portable-net45+win8+wp8+wpa81 (.NETPortable,Version=v0.0,Profile=Profile259)
One or more packages are incompatible with DNXCore,Version=v5.0.

请帮忙,我真的很想在 Linux 中进行概念验证,但这似乎不太可能。

谢谢

最佳答案

我用 .net core beta-7/sqLite 做了一个概念验证项目,它在 linux 上运行。我正在将它迁移到 RC2。

这是一个已知问题,请在此处找到解决方法:

https://github.com/aspnet/Home/releases/tag/1.0.0-rc2-final#issue132

关于linux - Entity Framework 7 是否适用于 Linux Dot Net Core CLR?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37248760/

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