找不到具有固定名称“System.Data.SqlClient”的 ADO.NET 提供程序的实体框架提供程序。

问题描述 投票:0回答:10

我们使用 EntityFramework 6 和 Code First。 我们有一个控制台应用程序,它没有引用 EntityFramework,但从其 App.config 读取连接字符串。 它调用 DatabaseInitializationUtilities 程序集,并将连接字符串作为参数传递。

DatabaseInitializationUtilities 引用了 EF6(EntityFramework 和 EntityFramework.SqlServer)。它的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>
     <system.serviceModel>
         <bindings>
            <basicHttpBinding>
                <binding name="BasicHttpBinding_IAuthentication" />
            </basicHttpBinding>
         </bindings>
         <client>
            <endpoint address="http://localhost/SecurityServices/Authentication.svc" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IAuthentication" contract="SecurityService.IAuthentication" name="BasicHttpBinding_IAuthentication" />
         </client>
      </system.serviceModel>
      <entityFramework>
         <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
            <parameters>
               <parameter value="v11.0" />
            </parameters>
         </defaultConnectionFactory>
         <providers>
            <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
         </providers>
      </entityFramework>
   </configuration>

当执行到达 DatabaseInitializationUtilities 尝试运行脚本的行时

context.Database.ExecuteSqlCommand(script.ScriptText)

抛出错误:

未找到具有固定名称“System.Data.SqlClient”的 ADO.NET 提供程序的实体框架提供程序。确保提供程序已在应用程序配置文件的“entityFramework”部分中注册。请参阅 http://go.microsoft.com/fwlink/?LinkId=260882 了解更多信息。

我相信补救措施正是我的配置文件中的内容,所以我不明白问题所在。

注意:Resharper 正在对节点进行蓝线处理并报告 “元素“EntityFramework”具有无效的子元素“providers”。但是,该部分是在我安装 EF6 时由 NuGet 注入的。

有什么想法吗?

c# asp.net .net sql-server entity-framework-6
10个回答
53
投票

您需要创建一个引用,因此它将被复制到调试文件夹中。这样以后就可以在运行时访问它了。

不要复制任何文件,只需创建此引用:

private volatile Type _dependency;

public MyClass()
{
    _dependency = typeof(System.Data.Entity.SqlServer.SqlProviderServices);
}

17
投票

您的应用程序路径中是否有程序集EntityFramework.SqlServer.dll? 我遇到了同样的问题,将 dll 复制到应用程序路径后,一切正常。


13
投票

5
投票

我也遇到这个问题了。当我运行 .net mvc 应用程序时,一切都在本地运行,但是当我发布它时,我收到了此错误。问题是我还必须在我的 Web 项目中引用 EntityFrameworl.SqlServer,尽管我有单独的数据项目。奇怪的是这个错误只有在发布app时才会抛出。这可能是微软的一些严重错误。我用的是 EF 6.1.1。


4
投票

这是因为

EntityFramework.SqlServer.dll
没有复制到您的项目中。添加该 dll,它有望正常工作。您可以从添加数据模型的项目中找到它。


2
投票

对我来说,web.config 文件中的提供程序引用不正确。我相信 nuget 包可能无法正确包含提供程序。

我用这个替换了我的提供商并且它起作用了:

  <entityFramework>
      <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
      <providers>
          <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
      </providers>
  </entityFramework>

2
投票

我也遇到类似的问题

通过执行以下操作解决了我的问题:

  1. 单击“工具”>“NuGet 包管理器”>“包管理器控制台”

    enter image description here

  2. 选择“默认项目:”下拉列表下的项目

  3. 输入命令

    install-package EntityFrameWork
    并按 Enter 执行它。

    enter image description here


0
投票

解决此类问题的最佳方法是将引用 EntityFramework.SqlServer.dll 包含到您的项目中,按 F4(操作属性)将属性更改为 Copy to Local =True,以便每次发布时该应用程序将被复制到已发布的文件夹中。


0
投票

我倾向于将 EntityFramework 添加到 Web 项目以及实际引用它的程序集。


0
投票

将“EntityFramework.SqlServer.dll”添加到您的项目 bin 文件夹中将解决您的问题。

© www.soinside.com 2019 - 2024. All rights reserved.