Davide Piras
Davide Piras

Reputation: 44595

is EF 4.3.x requiring anything else than pure standard official .NET Framework 4?

We are thinking to use the newly released EF 4.3.x

http://blogs.msdn.com/b/adonet/archive/2012/02/09/ef-4-3-released.aspx

does anybody know if this released piece of software requires anything not already officially released like .NET Framework 4.5 or similar? We are not allowed to include in our solution anything not already officially released and I am afraid if a beta or CTP version of any component is required I won't be able to deploy the application in the production servers (architecture and implementation governance in place...) Thanks!

Upvotes: 1

Views: 87

Answers (3)

CraigTP
CraigTP

Reputation: 44909

Entity Framework 4.3 is compiled against the .NET Framework 4.0. There is no requirement to have .NET Framework 4.5 in order to use EF 4.3, but it will work with it.

Please see the image below from Red Gate's Reflector which shows the "References" that the Entity Framework assembly is built against. Although this screen-shot only shows the "Microsoft.CSharp" assembly highlighted, and the resulting version information in the bottom pane (Version 4.0.0.0), I can confirm that all of the referenced assemblies are Version 4.0.0.0

enter image description here

Upvotes: 2

undefined
undefined

Reputation: 34238

Its .net 4 based at the moment, version 5 is better optimized for 4.5 but i think that under the scenes its still .net 4.

Upvotes: 1

LenPopLilly
LenPopLilly

Reputation: 1227

EF 4.3.1.0 works fine on my VPS running .NET 4 (not 4.5) Its been in action for a few weeks now and nothing to report.

Upvotes: 2

Related Questions