I created an ASP.NET project that included EF 6.1.3
Its package version is show = "6.1.3" and in Web.config version 6.0.0.0
However, in web.config, I still have:
section name="entityFramework"
type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection,
EntityFramework, Version=6.0.0.0, Culture=neutral,
PublicKeyToken=b77a5c561934e089" requirePermission="false"
All other dependent assemblies are updated correctly.
It gives an error message on the server
The type or name of the Infrastructure namespace does not exist in namespace 'System.Data.Entity
I thought this was due to a version issue. Should I update this myself?
Rohit source
share