找不到具有不变名称“MySql.Data.MySqlClient”的ADO.NET提供程序的实体框架提供程序 - WCF

时间:2017-01-09 09:20:20

标签: c# mysql entity-framework wcf

我正在关注tutoriel here(法语)但是当我使用WcfTestClient测试我的WCF应用程序时,我发现了这个错误。

  

找不到ADO.NET提供程序的实体框架提供程序   不变名称'MySql.Data.MySqlClient'。确保提供商是   在应用程序配置的'entityFramework'部分注册   文件。

我有一个Entity Framework的Library项目和一个WcfSelfHosting的项目。

错误来了:

@Value.Style(jdkOnly = true)

图书馆中的我的App.config

public IEnumerable<student> GetAllStudentsOfCourseFinance()
{
  return SchoolDataEntities.enrollements.Where(t => t.course.title == "Finance").Select(t => t.student);
}

我在WcfSelfHosting项目中的App.config

<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.SqlConnectionFactory, EntityFramework"/>
    <providers>
      <provider invariantName="MySql.Data.MySqlClient" type="MySql.Data.MySqlClient.MySqlProviderServices, MySql.Data.Entity.EF6"/>
      <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer"/>
    </providers>
  </entityFramework>
</configuration>

我在WcfSelfHosting项目中添加了Entityframework和MySQL.Data.Entity.EF6引用。

1 个答案:

答案 0 :(得分:2)

我想如果你使用实体框架,你必须有一个继承自DbContext的ApplicationContext类。如果你需要在ApplicationContext类上添加一个注释,就像这样:

using System.Data.Entity;

[DbConfigurationType(typeof(MySql.Data.Entity.MySqlEFConfiguration))]
public abstract class ApplicationContext : DbContext
{
     //Instructions.........
}

您还可以在entityframework标签上编辑Web.Config文件,如下所示:

<entityFramework codeConfigurationType="MySql.Data.Entity.MySqlEFConfiguration, MySql.Data.Entity.EF6">

您可以随时参考此链接:

http://dev.mysql.com/doc/connector-net/en/connector-net-entityframework60.html