Reputation: 21178
I have downloaded and installed Entity Framework 4.1. I have created a new project and added to it a new ADO.NET Entity Data Model. How can I verify that this was created using 4.1 of the EF?
Upvotes: 2
Views: 2346
Reputation: 364249
EF 4.1 is just extension of EF 4.0 so you must use both EF 4.0 (System.Data.Entity.dll from GAC) and EF 4.1 (EntityFramework.dll from installation directory of EF 4.1) assemblies. If you added ADO.NET Entity Data Model it is just EF 4.0 because EF 4.1 must be added manually or probably by using DbContext Generator T4 template. EDMX is still EF 4.0 feature.
Upvotes: 2
Reputation: 19842
Look at your project references, they should be version: 4.1.10311.0 (based on your link).
Upvotes: 1