I'm using the MySql data provider for BlogEngine.NET and ran into a small issue when trying to get it up and running.

The BlogEngine.NET 1.6 MySQLWeb.Config references the MySql.Data assembly version 6.2.2.0. I was unable to find that as one of the versions on the MySql Connector for .NET pages. All you will need to do is update the version in the web.config file to match the one in the latest version of the connector in both spots.

<add assembly="MySql.Data, Version=6.2.4.0, Culture=neutral, PublicKeyToken=C5687FC88969C44D"/>

and then in:

	<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.2.4.0, Culture=neutral, PublicKeyToken=C5687FC88969C44D"/>
		</DbProviderFactories>
	</system.data>