MySqlGlobalConfiguration

A class that is being used to initialize the necessary settings for the MySql.Data data provider.

This class exposes the UseMySql() extension method of GlobalConfiguration, which wires up all the necessary dependencies for MySql.Data (via MySqlBootstrap).

Usability

GlobalConfiguration
    .Setup()
    .UseMySql();

Call this once during application start-up, before opening any MySqlConnection.