Reputation: 5223
I created a project from template which included EF 6.0.
I then updated the nuget packages and EF 6.1.1 is installed.
However in web.config i still have this:
<configSections>
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
All other dependent assemblies are updated correctly (i.e MVC e.t.c)
Should i have updated this myself?
Upvotes: 1
Views: 634