Entity Framework 寻找 ADO.NET 提供商 SqlServerCe.3.5 而不是 4.0

Entity Framework looks for ADO.NET provider SqlServerCe.3.5 instead of 4.0

我正在使用 SQL Server CE 4.0 和 entity framework 6.0。在我想使用 WCF 服务和 Sync Framework 2.1 启用远程数据库的 N 层同步机制之前,一切都很好。

我按照此 tutorial and use the JTune's workaround 解决了不支持 SyncFramework 2.1 和 SQLSErverCompactCE 4.0 兼容性的问题。这只是 app.config 中 System.Data.SqlServerCE.dll 4.0.0

的运行时绑定重定向

然后我得到以下App.config文件

<?xml version="1.0" encoding="utf-8"?>
<configuration>

  <configSections>
    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  </configSections>
  <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlCeConnectionFactory, EntityFramework">
      <parameters>
        <parameter value="System.Data.SqlServerCe.4.0" />
      </parameters>
    </defaultConnectionFactory>
    <providers>
      <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
      <provider invariantName="System.Data.SqlServerCe.4.0" type="System.Data.Entity.SqlServerCompact.SqlCeProviderServices, EntityFramework.SqlServerCompact" />
    </providers>
  </entityFramework>
  <connectionStrings>
    <add name="Entities" connectionString="metadata=res://*/Persistence.Model1.csdl|res://*/Persistence.Model1.ssdl|res://*/Persistence.Model1.msl;provider=System.Data.SqlServerCe.4.0;provider connection string=&quot;data source=|DataDirectory|\XXXX.sdf&quot;" providerName="System.Data.EntityClient" />
  </connectionStrings>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Data.SqlServerCe" publicKeyToken="89845DCD8080CC91" culture="neutral"/>
        <bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0"/>
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
<system.data>
  <DbProviderFactories>
    <remove invariant="System.Data.SqlServerCe.4.0" />
    <add name="Microsoft SQL Server Compact Data Provider 4.0" invariant="System.Data.SqlServerCe.4.0" description=".NET Framework Data Provider for Microsoft SQL Server Compact" type="System.Data.SqlServerCe.SqlCeProviderFactory, System.Data.SqlServerCe, Version=4.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" />
  </DbProviderFactories>
</system.data>
</configuration>

它在某些配置上工作正常,但可能会因以下错误而失败。

 No Entity Framework provider found for the ADO.NET provider with invariant name 'System.Data.SqlServerCe.3.5'. Make sure the provider is registered in the 'entityFramework' section of the application config file. See http://go.microsoft.com/fwlink/?LinkId=260882 for more information.

请注意this question中提供的解决方案不可行,因为在我的情况下,我确实需要绑定重定向才能使用SyncFramework。

有没有办法告诉 entity framework 不要寻找 SQL Server CE 3.5 供应商而只寻找 4.0?

我想我明白了。当 SQL 服务器 CE 3.5 安装在机器上时,它会被添加到 machine.config 中的 DbProviders,并且根据它在 4.0 版本中的位置,您可能会遇到故障(请参阅我上面的评论)。看起来 app.config 让您可以删除 DbProviderFactory。我在 app.config 中添加了以下行,问题似乎已解决

<system.data>
  <DbProviderFactories>
    <remove invariant="System.Data.SqlServerCe.3.5" />
  </DbProviderFactories>
</system.data>