方法'ExecuteAsync'没有实现。 EF Code First

时间:2016-11-14 13:04:38

标签: c# .net sql-server entity-framework

将我们的项目从4.0框架升级到4.6后,我们开始收到从Visual Studio包管理器控制台运行的任何迁移命令的错误。

  

System.Reflection.TargetInvocationException:调用目标抛出了异常。 ---> System.TypeInitializationException:'System.Data.Entity.SqlServer.SqlProviderServices'的类型初始值设定项引发异常。 ---> System.TypeLoadException:程序'System.Data.Entity.SqlServer.DefaultSqlExecutionStrategy'中的方法'ExecuteAsync'来自程序集'EntityFramework.SqlServer,Version = 6.0.0.0,Culture = neutral,PublicKeyToken = b77a5c561934e089'没有实现。

所有EF dll都适用于4.5框架。我尝试重新安装EntityFramewor,删除引用,然后再次从packages-> EntityFramework.6.1.3-> lib-> net45文件夹中选择它们,但没有任何帮助。

这是app config

<?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" />
  </configSections>
  <connectionStrings>
    <add name="LocalDB" connectionString="data source=DAEDROTH-LAPTOP\DEV;initial catalog=LocalTest;persist security info=True;user id=Admin;password=1;multipleactiveresultsets=False;App=EntityFramework" providerName="System.Data.SqlClient" />
  </connectionStrings>
  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6" />
  </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" />
    </providers>
  </entityFramework>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration>

请帮忙。

1 个答案:

答案 0 :(得分:-1)

我找到了解决方案。只需从your_project / .vs / config文件夹中删除applicationhost.config文件即可。