Can Massive work with MySql?

I would like to use Massive with MySql, and I see that there are SQL providers (by default), PostgresSQL, Oracle and Sqllite for Massive. Is there a provider for MySql or is one of the other MySql providers working?

+5
source share
1 answer

Since Massive is only SQL Server and I work with MySQL, Ive forked it to add MySQL support.

You can find the repository on GitHub . There is also an available NuGet package called Massive.MySQL that has MySQL.Data as a dependency. This means that you need to do the following in order to get a working data access shell:

Install-Package Massive.MySQL

+5

All Articles