GatesReign
GatesReign

Reputation: 826

Is it possible to run entity framework 4.1 in .Net 3.5

I created a web application specific for the .Net version 4.0 utilizing entity framework 4.1 features. The server it is being deployed on supports up to .Net 3.5 applications. I want to port over the project to .net 3.5 but certain features seem unavailable, such as access to the ObjectSet Class. So is it possible to port over this project with the same features, or will I have to recreate a whole new web project?

Upvotes: 2

Views: 2270

Answers (2)

paulmey
paulmey

Reputation: 1056

From the download page:

ADO.NET Entity Framework 4.1 requires .NET Framework 4.0 RTM to be installed. http://www.microsoft.com/downloads/en/details.aspx?FamilyID=b41c728e-9b4f-4331-a1a8-537d16c6acdf&displaylang=en

It builds on EF 4, which shipped with .NET 4.0.

Upvotes: 3

Darin Dimitrov
Darin Dimitrov

Reputation: 1038790

Quote from the download section:

ADO.NET Entity Framework 4.1 RC requires .NET Framework 4.0 RTM to be installed.

Upvotes: 2

Related Questions