Entity Framework 6 和自定义控件
Entity Framework 6 and Custom Controls
我正在创建一个最终将在多个项目中使用的自定义用户控件。它将是一个包含大量业务逻辑并访问 SQL 数据库以加载数据和验证用户操作的胖控件。 (我的一个要求是尽可能简单地将它放到一个新窗体上。)所以我有一个 "Windows Forms Control Library" 项目,其中有一个用户控件。我正在使用 Entity Framework 6 设置一个 edmx。我针对 returns 几行数据的数据模型编写了一个 LINQ 查询,然后使用该数据填充组合框。现在我想测试一下。因此,我将一个 WinForms 项目添加到解决方案中,将我的控件添加到 Form1 和 运行 测试项目中。我收到以下错误:
No connection string named 'MyDatabaseEntities' could be found in the
application config file.
正确...我需要使用所有 EF6 配置更新 App.config。因此,我将 App.Config 的大部分内容从我的控件库项目复制到我的 WinForms 测试项目的 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" />
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
</configSections>
<connectionStrings>
<add name="MyDatabaseEntities" connectionString="metadata=res://*/MyDatabase.csdl|res://*/MyDatabase.ssdl|res://*/MyDatabase.msl;provider=System.Data.SqlClient;provider connection string="data source=MyServer;initial catalog=MyDatabase;persist security info=True;user id=testuser;password=testpassword;MultipleActiveResultSets=True;App=EntityFramework"" providerName="System.Data.EntityClient" />
</connectionStrings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<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>
现在,当我 运行 测试项目时,我得到这个错误:
An unhandled exception of type 'System.InvalidOperationException'
occurred in mscorlib.dll
Additional information: The Entity Framework provider type
'System.Data.Entity.SqlServer.SqlProviderServices,
EntityFramework.SqlServer' registered in the application config file
for the ADO.NET provider with invariant name 'System.Data.SqlClient'
could not be loaded. Make sure that the assembly-qualified name is
used and that the assembly is available to the running application.
See http://go.microsoft.com/fwlink/?LinkId=260882 for more
information.
我可以通过将 EF6 添加到测试项目来解决这个问题,但这似乎不对。我希望我的控件封装所有数据访问。我只要在App.Config里有EF的配置信息就够了吧?但是,如果我将 EF 添加到测试项目中,显然会缺少一些可以修复的东西。除了添加 EF 之外,任何人都可以告诉我我还需要对测试项目做些什么吗? (或者是否有更好的方法来完成我的目标?)
谢谢!
因为您的 web.config
包含此行:
<provider
invariantName="System.Data.SqlClient"
type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
您的应用程序 bin 文件夹中需要有正确的 DLL。在这种情况下,所需的库是 EntityFramework.SqlServer.dll
。但是,您几乎肯定也需要 EntityFramework.dll
。
我正在创建一个最终将在多个项目中使用的自定义用户控件。它将是一个包含大量业务逻辑并访问 SQL 数据库以加载数据和验证用户操作的胖控件。 (我的一个要求是尽可能简单地将它放到一个新窗体上。)所以我有一个 "Windows Forms Control Library" 项目,其中有一个用户控件。我正在使用 Entity Framework 6 设置一个 edmx。我针对 returns 几行数据的数据模型编写了一个 LINQ 查询,然后使用该数据填充组合框。现在我想测试一下。因此,我将一个 WinForms 项目添加到解决方案中,将我的控件添加到 Form1 和 运行 测试项目中。我收到以下错误:
No connection string named 'MyDatabaseEntities' could be found in the application config file.
正确...我需要使用所有 EF6 配置更新 App.config。因此,我将 App.Config 的大部分内容从我的控件库项目复制到我的 WinForms 测试项目的 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" />
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
</configSections>
<connectionStrings>
<add name="MyDatabaseEntities" connectionString="metadata=res://*/MyDatabase.csdl|res://*/MyDatabase.ssdl|res://*/MyDatabase.msl;provider=System.Data.SqlClient;provider connection string="data source=MyServer;initial catalog=MyDatabase;persist security info=True;user id=testuser;password=testpassword;MultipleActiveResultSets=True;App=EntityFramework"" providerName="System.Data.EntityClient" />
</connectionStrings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<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>
现在,当我 运行 测试项目时,我得到这个错误:
An unhandled exception of type 'System.InvalidOperationException' occurred in mscorlib.dll
Additional information: The Entity Framework provider type 'System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer' registered in the application config file for the ADO.NET provider with invariant name 'System.Data.SqlClient' could not be loaded. Make sure that the assembly-qualified name is used and that the assembly is available to the running application. See http://go.microsoft.com/fwlink/?LinkId=260882 for more information.
我可以通过将 EF6 添加到测试项目来解决这个问题,但这似乎不对。我希望我的控件封装所有数据访问。我只要在App.Config里有EF的配置信息就够了吧?但是,如果我将 EF 添加到测试项目中,显然会缺少一些可以修复的东西。除了添加 EF 之外,任何人都可以告诉我我还需要对测试项目做些什么吗? (或者是否有更好的方法来完成我的目标?)
谢谢!
因为您的 web.config
包含此行:
<provider
invariantName="System.Data.SqlClient"
type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
您的应用程序 bin 文件夹中需要有正确的 DLL。在这种情况下,所需的库是 EntityFramework.SqlServer.dll
。但是,您几乎肯定也需要 EntityFramework.dll
。