Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get Entity Framework 4.2 without Nuget?

We need to get hold of Entity Framework 4.2 to test out the SQL generation in 4.2.

Unfortunately, our development environment does not allow us to use Nuget.

Is there any way to get EF4.2 binaries so that we can test it out?

like image 991
swirlobt Avatar asked Nov 17 '11 02:11

swirlobt


2 Answers

Could you use something like the NuGet Package Explorer (not a part of NuGet)?

http://npe.codeplex.com/

Or, you may be able to download it directly:

http://packages.nuget.org/v1/package/download/entityframework/4.2.0.0

like image 50
csm8118 Avatar answered Oct 18 '22 07:10

csm8118


If your development environement doesn't allow using NuGet you should probably change it becuase that is the way which MS choose for distributing additional librarires and for exampel EFv4.2 is not distributed in any other form then NuGet. The only option for you is to download it elsewhere and copy EntityFramework.dll to your environement.

like image 38
Ladislav Mrnka Avatar answered Oct 18 '22 05:10

Ladislav Mrnka