web-dev-qa-db-fra.com

Une exception non gérée du type 'System.TypeInitializationException' s'est produite dans EntityFramework.dll

J'essayais d'apprendre Entity Framework et SQLite using ce tutoriel . Cependant, je reçois une erreur.

L'erreur renvoyée est:

Une exception non gérée du type 'System.TypeInitializationException' s'est produite dans EntityFramework.dll

Informations complémentaires: L'initialiseur de type de 'System.Data.Entity.Internal.AppConfig' a ​​généré une exception.

Voici la trace d'erreur complète:

System.TypeInitializationException: The type initializer for 'System.Data.Entity.Internal.AppConfig' threw an exception. ---> System.Configuration.Configuration
ErrorsException: Configuration system failed to initialize ---> System.Configuration.ConfigurationErrorsException: Only one <configSections> element allowed per config file and if present must be the first child of the root <configuration>
element. (C:\Users\Ankur\Documents\Visual Studio 2012\Projects\ConsoleApplication1\ConsoleApplication1\bin\Debug\ConsoleApplication1.vshost.exe.config line 11)
   at System.Configuration.ConfigurationSchemaErrors.ThrowIfErrors(Boolean ignoreLocal)
   at System.Configuration.BaseConfigurationRecord.ThrowIfParseErrors(ConfigurationSchemaErrors schemaErrors)
   at System.Configuration.BaseConfigurationRecord.ThrowIfInitErrors()
   at System.Configuration.ClientConfigurationSystem.EnsureInit(String configKey)
   --- End of inner exception stack trace ---
   at System.Configuration.ClientConfigurationSystem.EnsureInit(String configKey)
   at System.Configuration.ClientConfigurationSystem.PrepareClientConfigSystem(String sectionName)
   at System.Configuration.ClientConfigurationSystem.System.Configuration.Internal.IInternalConfigSystem.GetSection(String sectionName)
   at System.Configuration.ConfigurationManager.get_ConnectionStrings()
   at System.Data.Entity.Internal.AppConfig..ctor()
   at System.Data.Entity.Internal.AppConfig..cctor()
   --- End of inner exception stack trace ---
   at System.Data.Entity.Internal.AppConfig.get_DefaultInstance()
   at System.Data.Entity.Internal.LazyInternalConnection..ctor(String nameOrConnectionString)
   at System.Data.Entity.DbContext..ctor()
   at ConsoleApplication1.ChinookContext..ctor()
   at ConsoleApplication1.Program.Main(String[] args) in c:\Users\Ankur\Documents\Visual Studio 2012\Projects\ConsoleApplication1\ConsoleApplication1\Program.cs
:line 16

Voici le code C #:

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            using (var context = new ChinookContext()) //error comes on this line
            {
            }
        }
    }

    class ChinookContext : DbContext
    {
    }
}

Voici le fichier App.config:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <system.data>
    <DbProviderFactories>
      <add name="SQLite Data Provider" invariant="System.Data.SQLite" description="Data Provider for SQLite" type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite" />
    </DbProviderFactories>
  </system.data>
  <connectionStrings>
    <add name="ChinookContext" connectionString="Data Source=|DataDirectory|Chinook_Sqlite_AutoIncrementPKs.sqlite" providerName="System.Data.SQLite" />
  </connectionStrings>
  <configSections>
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
    <!-- For more information on Entity Framework configuration, visit http://go.Microsoft.com/fwlink/?LinkID=237468 -->
  </configSections>
  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
  </startup>
  <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
      <parameters>
        <parameter value="v11.0" />
      </parameters>
    </defaultConnectionFactory>
  </entityFramework>
</configuration>

Voici le fichier packages.config:

<?xml version="1.0" encoding="utf-8"?>
<packages>
  <package id="EntityFramework" version="5.0.0" targetFramework="net45" />
  <package id="System.Data.SQLite.x86" version="1.0.86.0" targetFramework="net45" />
</packages>
45
Joe Slater

Lire le message:

Un seul élément <configSections> autorisé par Le fichier de configuration et, si présent, doit être le premier enfant de l'élément <configuration> racine.

Déplacez l'élément configSections vers le haut, juste au-dessus de l'emplacement où system.data est actuellement.

80
Marc Gravell

Vérifiez la version de référence d'Entity Framework que vous avez dans vos références et assurez-vous qu'elle correspond à votre noeud configSections dans le fichier Web.config. Dans mon cas, il désignait la version 5.0.0.0 dans mes configSections et ma référence était 6.0.0.0. Je viens de le changer et cela a fonctionné ...

<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
4
Hector Alvarez

J'ai eu ce problème lorsque j'ai référencé un projet de bibliothèque à partir d'une application console et que le projet de bibliothèque utilisait un package de nugets qui n'est pas référencé dans l'application console. Faire référence au même package dans l'application console a aidé à résoudre ce problème.

Voir l'exception interne peut aider.

0
Akbar Badhusha

Il suffit d'aller dans le dossier Web.Config du dossier Main, pas celui du dossier Views

configSections

section name="entityFramework" type="System.Data. .....,Version=" <strong>5</strong>.0.0.0"..

<..>

AJUSTEZ LA VERSION DE EntityFramework que vous avez installée, ex. comme Version 6 . 0.0.0 "

0
irfan akkas

Vérifiez que la bonne version est référencée dans votre projet. Par exemple. la dll dont il se plaint pourrait provenir d’une ancienne version et c’est pourquoi il pourrait y avoir une incompatibilité de version.

0
Sujeet