我有一個類似的問題,如問題 No Entity Framework provider found for the ADO.NET provider with invariant name 'System.Data.SqlClient'提出的一個,該錯誤有以下消息:實體框架ADO.NET Sql.Data.Client提供商
「以不變的ADO.NET提供者名稱「System.Data.SqlClient」未在計算機或應用程序配置文件中註冊,或者無法加載。有關詳細信息,請參閱內部異常。
正如相關問題的答案所示,我通過軟件包管理器控制檯重新安裝了實體框架(EF6),但錯誤仍然存在。我也檢查了我的項目中引用了EntityFramework.SqlServer.dll。 這裏是存儲在App.config中的連接字符串:
<add name="DesignModel" ConnectionString="metadata=res://*/DesignModel.csdl|res://*/DesignModel.ssdl|res://*/DesignModel.msl;provider=System.Data.SqlClient;provider connection string="data source=C071E;initial catalog=CTD2;integrated security=True;multipleactiveresultsets=True;App=EntityFramework"" providerName="System.Data.EntityClient" />
我有另外一個項目中,我使用的EntityFramework創建完全相同的實體和上下文,並能正常工作,這使得這一切更令人費解。
試圖執行此線時,將顯示該錯誤:
DesignModel designContext = new DesignModel();
designContext.MoPerfIDs.Load();
其中DesignModel是繼承的DbContext的類的名字。
下面是完整的App.config:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<section name="ppe.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</sectionGroup>
<!-- 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>
<connectionStrings>
<add name="DesignModel" connectionString="metadata=res://*/DesignModel.csdl|res://*/DesignModel.ssdl|res://*/Design Model.msl;provider=System.Data.SqlClient;provider connection string="data source=MONNMC071E;initial catalog=CTD2;integrated security=True;multipleactiveresultsets=True;App=EntityFramework"" providerName="System.Data.EntityClient" />
</connectionStrings>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework">
<parameters>
<parameter value="System.Data.SqlClient" />
</parameters>
</defaultConnectionFactory>
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
</providers>
</entityFramework>
</configuration>
任何幫助將不勝感激。提前致謝。
,什麼是內部異常? – Pawel
在bin中是EntityFramework.SqlServer.dll嗎? –
我遇到同樣的問題。我不能簡單地創建另一個解決方案來解決這個問題我也不明白這是如何關閉的,因爲「無關緊要」。 – Bloodhound