Entity Framework 6是否支持.Net 3.5?
(撰写本文时,EF 6仍处于测试阶段。)
使用.Net 4.5时,文档显示了许多好处,性能和其他方面,但我找不到“最低要求”页面。
答案 0 :(得分:9)
在EF6 Roadmap page on CodePlex的右侧,它表示.Net 4.0是系统要求。此外,当reviewing the csproj
files associated with EF6时,似乎只提供4.0和4.5作为目标:
...
<CodeAnalysisRuleSet>..\Strict.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
...
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugNet40|AnyCPU' ">
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
...
鉴于此,我会说答案是否:EF6不支持.Net 3.5 。