Trying to use Visual Studio 2012, Entity Framework 5.0 database first approach to generate my edmx.
When I generate the EDMX from the database VS 2012 - says
Successfully registered the assembly 'System.Data.Entity, Version=4.0.0.0;
web.config
file as well says
<add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral.../>
I see
EntityFramework
andSystem.Data.Entity
both listed in the references.EntityFramework
shows up in the packages folder andSystem.Data.Entity
points to the .NET 4.5 install folder. Does this mean that I am succesfully using EF 5.0?For existing project migrations - when I migrate a project from VS 2010 .NET 4.0 and set the .NET client profile to 4.5 the
System.Data.Entity
assembly gets upgraded to the one in .NET 4.5 install folder. I do not see theEntityFramework.dll
at all. Are there any changes I would need to make in order for my existing project to mgirate to EF 5.0 and .NET 4.5
Am I missing something here?