I have an Entity Framework project. I want to upgrade it to EF 5. I used NuGet with this command:
PM> Install-Package EntityFramework
to install EF 5.0. He added the lines to my configuration file:
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=4.4.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
Is updating my project enough to EF 5.0? Is this the right way to do an update?
source share