views:

363

answers:

1

Hi guys,

I was using the latest EF 4 bits in Visual Studio 2010 RC and have fallen in love with it. However, I have to develop a small web application using .NET 3.5 SP1 (VS 2008) for work... I was wondering if it was possible to somehow utilize EF 4 in .NET 3.5 SP1/VS 2008.

Regards, Karan Misra

+3  A: 

EF4 requires .NET 4 (it's part of .NET 4), and you can't use that from a .NET 3.5 application.

John Saunders
Ah that is what I was afraid of :( :( Ok thanks.
KiD0M4N
Because of different CLR versions (4.0 and 2.0)
Nagg