I\'m creating a MVC4 web application project.When i\'m using empty project and simply run it on browser it works fine.But the problem is when i\'m trying to create a Interne
There is another solution: I manually opened machine.config and commented out section <Sitemap>
(it's almost on the bottom of the file). Save it as the administrator and violá. It works.
Solutions using sitemaps are intact without having to touch them and my solutions where I need to use the MySQL connector work as expected as well.
finally I have solved it my own and it was a small solution. Just have to add a reference to Web.Mysql
dll file and now it works properly.
-Open the MySQL installer
-Click the remove tab to your right.
-Check all the things that are related to .Net (like connectors)
-Click remove button
-Close and reopen visual studio
-Upvote Ognyan Dimitrov's answer
This nasty error occurs when you install MySQL .NET Connector 6.9.4 (probably other versions too) because if you do not uncheck "Web Providers" during the installation it writes in your machine.config which brings you to this error. Be sure to read the entire answer before applying any of these steps in order to start from where you have to start.
The real problem with other suggestions is that if you are not using MySQL in every project to just add a reference to MySQL dll to mitigate the problem in every project is not an option. Every project of yours that uses ASP.NET will require it because of the rows added in machine config by the installer!
To solve the problem properly :
But if you do it that way you may try to add Ado NET Entity Data model after, right? If that is the case it is most likely that you do not see the option for MySQL as an available data source in the wizard. This is because from version 6.7 when you install MySQL Connector .NET it will no longer register as DDEX provider automatically.
To correct this issue you have to download a separate installer provided especially for MySQL and .NET from here or the just Visual Studio integration plug-in directly from here.
Be sure to check the Visual Studio integration and connector during the installation wizard on either of the above installers.
I know this was asked a while ago, but what worked for me was adding the MySql.Data
and MySql.Web
references to my project.
This solution worked for me:
<siteMap>
<providers>
<remove name="MySqlSiteMapProvider"/>
</providers>
</siteMap>
I think they forgot to put the file MySql.Web in de GAC (Global Assembly Cache)