我有別人的解決方案。在這個解決方案中有一些nuget軟件包。當我運行nuget恢復時,它不會退回所有軟件包。其中之一是實體框架。我可以用的NuGet手動安裝它,但我認爲它會得到5版如何使用nuget獲取舊版本的實體框架?
在web.config我看到這一點:
<section name="entityFramework"
type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=4.4.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
requirePermission="false" />
我想我需要實體框架版本4.4.0.0。這是真的?我怎樣才能用nuget獲得這個版本?
如果您的程序集版本爲4.4,則表示您在.NET Framework 4.0上使用實體框架5(另請參閱[本文/咆哮](http://www.bricelam.net/2012/10/unicorn-myths) -debunked-entity-framework.html)) – bricelam