You must use EF 4.1 when the default is EF 4.3.1

I run dev on VS2010 SP1, and when I run Install-Package EntityFramework, I get EF 4.3.1 installed by Nuget. Is there a way to limit the version of EF 4.1? I would like to study them differently. Please, help!

-Thank you Ram

+3
source share
2 answers

By default, Nuget will install the latest version of this package.

But you can install any previous version of nuget package (which are available on nuget.org) in the package manager console by specifying Version , for example:

PM> Install-Package EntityFramework -Version 4.1.10715.0

You can check the available versions of EF here .

+4
source

, , : Get-Package -ListAvailable -Filter entityframework ( )

0

All Articles