I try to write application using to old MySQL database. I have VS2013 .NET 4.0 project. I installed:
mysql-for-visualstudio-1.2.4.msi
mysql-connector-net-6.9.7.msi
If I add the connection string, I successfully connect to database, but then it cannot find the proper version of EntityFramework or what? See screenshot. What should I do then?
This connector is claimed to support EF6.
App config:
<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" />
<provider invariantName="MySql.Data.MySqlClient"
type="MySql.Data.MySqlClient.MySqlProviderServices,
MySql.Data.Entity.EF6, Version=6.9.7.0,
Culture=neutral, PublicKeyToken=c5687fc88969c44d">
</provider>
</providers>