Package version EntityFramework = "6.1.3" and web version 6.0.0.0?

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?

+4
source share
2 answers

6.1.3, NuGet, 6.0.0, . . Microsoft

System.Data.Entity.dll

+1

System.Data.Entity.dll . EntityFramework.dll, C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE, EntityFramework.dll.

0

Source: https://habr.com/ru/post/1610262/


All Articles