I am trying to integrate MySQL database with my ASP.NET project. I have seen many tutorials and did the following
- Added the MySql.Data, MySql.DataEntity.EF6 and MySql.Web into the project.
change the web config file to connect to the mysql database
<system.data> <DbProviderFactories> <clear /> <add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.10.6.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" /> </DbProviderFactories> </system.data>
Note: the snippet was suggested in a tutorial that can be found in Here
After doing all that when I try to add data source with the help of AOD.NET entity data model, the data source for MySql option does not appear.
I am using
- Visual Studio Community 2015
- MySQL for visual studio 1.2.7
- Connector/NET 6.10.6
How can i solve the problem? Does it have something to do with the versions and compatibility?

It seems there isn't a "MySql for Visual Studio" for Connector/NET 6.10.6
Uninstall Connector/NET 6.10.6
Install Connector/NET 6.9.8 MySQL Connector/Net (Archived Versions)