Marcel
Marcel

Reputation: 15732

Can I use EF5 and stay with Visual Studio 2010 for the moment?

I would like to use the latest Entity Framework (EF5), but not like to buy a new Version of Visual Studio yet.

Would it be possible to use EF5 with VS2010? And with what restrictions, if any?

Notes:

Upvotes: 5

Views: 6130

Answers (1)

Alastair Pitts
Alastair Pitts

Reputation: 19601

You are able to use EF5 with VS2010.

EF5 can be used against .NET 4.0 and .NET 4.5 applications.

as per this blog post on the EF Team Blog:

http://blogs.msdn.com/b/adonet/archive/2012/08/15/ef5-released.aspx

This version of the NuGet package is fully compatible with Visual Studio 2010 and Visual Studio 2012 and can be used for applications targeting .NET 4.0 and 4.5.

Some features are only available when writing an application that targets .NET 4.5. This includes enum support, spatial data types, table-valued functions and the performance improvements.

The restrictions are around the target .NET version of your application, not visual studio itself.

Upvotes: 7

Related Questions