Could not load file or assembly 'JetEntityFrameworkProvider'

Multi tool use
Multi tool use








up vote
0
down vote

favorite












I have a problem with JetEntityFrameworkProvider?



My App.config Codes:



<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="entityFramework"
type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
requirePermission="false"/>
<sectionGroup name="applicationSettings"
type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<section name="mrgame.Properties.Settings"
type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
</sectionGroup>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<section name="mrgame.Properties.Settings"
type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
allowExeDefinition="MachineToLocalUser" requirePermission="false"/>
</sectionGroup>
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
</configSections>
<connectionStrings>
<add name="DefaultConnectionString"
connectionString="Provider=Microsoft.ACE.OLEDB.12.0;Data Source=D:projectsdesktopMrGameMrGamebinDebugDatadatabase.accdb;"
providerName="JetEntityFreamworkProvider"/>
</connectionStrings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2"/>
</startup>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
<parameters>
<parameter value="mssqllocaldb"/>
</parameters>
</defaultConnectionFactory>
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer"/>
<provider invariantName="JetEntityFrameworkProvider" type="JetEntityFrameworkProvider.JetProviderServices, JetEntityFrameworkProvider"/>
</providers>
</entityFramework>
<system.data>
<DbProviderFactories>
<remove invariant="JetEntityFrameworkProvider"/>
<add invariant="JetEntityFrameworkProvider" name="Jet Entity Framework Provider" description="Jet Entity Framework Provider"
type="JetEntityFrameworkProvider.JetProviderFactory, JetEntityFrameworkProvider"/>
</DbProviderFactories>
</system.data>
</configuration>


and My DBContextClass is:



class AppContext : DbContext


public AppContext() : base("DefaultConnectionString")





protected override void OnModelCreating(DbModelBuilder modelBuilder)

base.OnModelCreating(modelBuilder);



public DbSet<User> Users get; set;
public DbSet<Transaction> Transactions get; set;



But when I run my project I get this error:




An unhandled exception of type 'System.BadImageFormatException'
occurred in mscorlib.dll



Additional information: Could not load file or assembly
'JetEntityFrameworkProvider' or one of its dependencies. An attempt
was made to load a program with an incorrect format.




I removed JetEntityFrameworkProvider and reinstall by NuGet but It throw exception..










share|improve this question

























    up vote
    0
    down vote

    favorite












    I have a problem with JetEntityFrameworkProvider?



    My App.config Codes:



    <?xml version="1.0" encoding="utf-8"?>
    <configuration>
    <configSections>
    <section name="entityFramework"
    type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
    requirePermission="false"/>
    <sectionGroup name="applicationSettings"
    type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    <section name="mrgame.Properties.Settings"
    type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
    </sectionGroup>
    <sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    <section name="mrgame.Properties.Settings"
    type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
    allowExeDefinition="MachineToLocalUser" requirePermission="false"/>
    </sectionGroup>
    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
    </configSections>
    <connectionStrings>
    <add name="DefaultConnectionString"
    connectionString="Provider=Microsoft.ACE.OLEDB.12.0;Data Source=D:projectsdesktopMrGameMrGamebinDebugDatadatabase.accdb;"
    providerName="JetEntityFreamworkProvider"/>
    </connectionStrings>
    <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2"/>
    </startup>
    <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
    <parameters>
    <parameter value="mssqllocaldb"/>
    </parameters>
    </defaultConnectionFactory>
    <providers>
    <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer"/>
    <provider invariantName="JetEntityFrameworkProvider" type="JetEntityFrameworkProvider.JetProviderServices, JetEntityFrameworkProvider"/>
    </providers>
    </entityFramework>
    <system.data>
    <DbProviderFactories>
    <remove invariant="JetEntityFrameworkProvider"/>
    <add invariant="JetEntityFrameworkProvider" name="Jet Entity Framework Provider" description="Jet Entity Framework Provider"
    type="JetEntityFrameworkProvider.JetProviderFactory, JetEntityFrameworkProvider"/>
    </DbProviderFactories>
    </system.data>
    </configuration>


    and My DBContextClass is:



    class AppContext : DbContext


    public AppContext() : base("DefaultConnectionString")





    protected override void OnModelCreating(DbModelBuilder modelBuilder)

    base.OnModelCreating(modelBuilder);



    public DbSet<User> Users get; set;
    public DbSet<Transaction> Transactions get; set;



    But when I run my project I get this error:




    An unhandled exception of type 'System.BadImageFormatException'
    occurred in mscorlib.dll



    Additional information: Could not load file or assembly
    'JetEntityFrameworkProvider' or one of its dependencies. An attempt
    was made to load a program with an incorrect format.




    I removed JetEntityFrameworkProvider and reinstall by NuGet but It throw exception..










    share|improve this question























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I have a problem with JetEntityFrameworkProvider?



      My App.config Codes:



      <?xml version="1.0" encoding="utf-8"?>
      <configuration>
      <configSections>
      <section name="entityFramework"
      type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
      requirePermission="false"/>
      <sectionGroup name="applicationSettings"
      type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
      <section name="mrgame.Properties.Settings"
      type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
      </sectionGroup>
      <sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
      <section name="mrgame.Properties.Settings"
      type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
      allowExeDefinition="MachineToLocalUser" requirePermission="false"/>
      </sectionGroup>
      <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
      </configSections>
      <connectionStrings>
      <add name="DefaultConnectionString"
      connectionString="Provider=Microsoft.ACE.OLEDB.12.0;Data Source=D:projectsdesktopMrGameMrGamebinDebugDatadatabase.accdb;"
      providerName="JetEntityFreamworkProvider"/>
      </connectionStrings>
      <startup>
      <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2"/>
      </startup>
      <entityFramework>
      <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
      <parameters>
      <parameter value="mssqllocaldb"/>
      </parameters>
      </defaultConnectionFactory>
      <providers>
      <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer"/>
      <provider invariantName="JetEntityFrameworkProvider" type="JetEntityFrameworkProvider.JetProviderServices, JetEntityFrameworkProvider"/>
      </providers>
      </entityFramework>
      <system.data>
      <DbProviderFactories>
      <remove invariant="JetEntityFrameworkProvider"/>
      <add invariant="JetEntityFrameworkProvider" name="Jet Entity Framework Provider" description="Jet Entity Framework Provider"
      type="JetEntityFrameworkProvider.JetProviderFactory, JetEntityFrameworkProvider"/>
      </DbProviderFactories>
      </system.data>
      </configuration>


      and My DBContextClass is:



      class AppContext : DbContext


      public AppContext() : base("DefaultConnectionString")





      protected override void OnModelCreating(DbModelBuilder modelBuilder)

      base.OnModelCreating(modelBuilder);



      public DbSet<User> Users get; set;
      public DbSet<Transaction> Transactions get; set;



      But when I run my project I get this error:




      An unhandled exception of type 'System.BadImageFormatException'
      occurred in mscorlib.dll



      Additional information: Could not load file or assembly
      'JetEntityFrameworkProvider' or one of its dependencies. An attempt
      was made to load a program with an incorrect format.




      I removed JetEntityFrameworkProvider and reinstall by NuGet but It throw exception..










      share|improve this question













      I have a problem with JetEntityFrameworkProvider?



      My App.config Codes:



      <?xml version="1.0" encoding="utf-8"?>
      <configuration>
      <configSections>
      <section name="entityFramework"
      type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
      requirePermission="false"/>
      <sectionGroup name="applicationSettings"
      type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
      <section name="mrgame.Properties.Settings"
      type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
      </sectionGroup>
      <sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
      <section name="mrgame.Properties.Settings"
      type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
      allowExeDefinition="MachineToLocalUser" requirePermission="false"/>
      </sectionGroup>
      <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
      </configSections>
      <connectionStrings>
      <add name="DefaultConnectionString"
      connectionString="Provider=Microsoft.ACE.OLEDB.12.0;Data Source=D:projectsdesktopMrGameMrGamebinDebugDatadatabase.accdb;"
      providerName="JetEntityFreamworkProvider"/>
      </connectionStrings>
      <startup>
      <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2"/>
      </startup>
      <entityFramework>
      <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
      <parameters>
      <parameter value="mssqllocaldb"/>
      </parameters>
      </defaultConnectionFactory>
      <providers>
      <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer"/>
      <provider invariantName="JetEntityFrameworkProvider" type="JetEntityFrameworkProvider.JetProviderServices, JetEntityFrameworkProvider"/>
      </providers>
      </entityFramework>
      <system.data>
      <DbProviderFactories>
      <remove invariant="JetEntityFrameworkProvider"/>
      <add invariant="JetEntityFrameworkProvider" name="Jet Entity Framework Provider" description="Jet Entity Framework Provider"
      type="JetEntityFrameworkProvider.JetProviderFactory, JetEntityFrameworkProvider"/>
      </DbProviderFactories>
      </system.data>
      </configuration>


      and My DBContextClass is:



      class AppContext : DbContext


      public AppContext() : base("DefaultConnectionString")





      protected override void OnModelCreating(DbModelBuilder modelBuilder)

      base.OnModelCreating(modelBuilder);



      public DbSet<User> Users get; set;
      public DbSet<Transaction> Transactions get; set;



      But when I run my project I get this error:




      An unhandled exception of type 'System.BadImageFormatException'
      occurred in mscorlib.dll



      Additional information: Could not load file or assembly
      'JetEntityFrameworkProvider' or one of its dependencies. An attempt
      was made to load a program with an incorrect format.




      I removed JetEntityFrameworkProvider and reinstall by NuGet but It throw exception..







      wpf entity oledb access






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 10 at 11:15









      Amin

      185




      185



























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













           

          draft saved


          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53238396%2fcould-not-load-file-or-assembly-jetentityframeworkprovider%23new-answer', 'question_page');

          );

          Post as a guest



































          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















           

          draft saved


          draft discarded















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53238396%2fcould-not-load-file-or-assembly-jetentityframeworkprovider%23new-answer', 'question_page');

          );

          Post as a guest














































































          7Xa53yj DmvQa1P woUAiqedE3
          VAtOY 4x0s,bi HubZg77olZgloc Rq 4a p7Lf7MeqgAITd4eQ6o OcTqs

          Popular posts from this blog

          Top Tejano songwriter Luis Silva dead of heart attack at 64

          Can't figure out why I get Error loading static resource from app.xaml

          How to fill missing numeric if any value in a subset is missing, all other columns with the same subset are missing