Web.Config or app.config:-
------------------------
<configuration>
<configSections>
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
</configuration>
But later when you update the EntityFramework some times the Version will not Update in Web.Config or app.config and while running and Using EntityFramework in Program it will Show you the Error like this "The type initializer for 'System.Data.Entity.Internal.AppConfig' threw an exception".
Example:-
---------
Let's Say i had previously 5.0.0.0 and now i Updated to 6.0.0.0 So we need to Change the same thing in Web.config or app.config.
Web.Config or app.config:-
------------------------
<configuration>
<configSections>
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
</configuration>
0 comments:
Post a Comment