EF Core Providers Discover how to install and use those providers
A variety of sources builds EF Core providers and all of them are not maintained as part of the Entity Framework Core Project. Below are some more providers available for EF Core
You can find the full provider list supported here: https://docs.microsoft.com/en-us/ef/core/providers/
It allows Entity Framework Core to be used with MySQL. The provider is maintained as part of the Pomelo Foundation Project.
PM> Install-Package Pomelo.EntityFrameworkCore.MySql
NuGet Url: Pomelo.EntityFrameworkCore.MySql
Pomelo.EntityFrameworkCore.MyCat is an Entity Framework Core provider and optimized for MyCat (An open source MySQL cluster proxy which based on Cobar)
PM> Install-Package Pomelo.EntityFrameworkCore.MyCat
NuGet Url: Pomelo.EntityFrameworkCore.MyCat
Allows SQL Server Compact 4.0 to be used with Entity Framework Core
PM> Install-Package EntityFrameworkCore.SqlServerCompact40
NuGet Url: EntityFrameworkCore.SqlServerCompact40
Allows SQL Server Compact 3.5 SP2 to be used with Entity Framework Core. Requires the SQL Server Compact 3.5 SP2 runtime to be installed.
PM> Install-Package EntityFrameworkCore.SqlServerCompact35
NuGet Url: EntityFrameworkCore.SqlServerCompact35
The Entity Framework Core Provider for Firebird enables you to develop .NET applications that connect to the Firebird database using Entity Framework Core.
PM> Install-Package FirebirdSql.EntityFrameworkCore.Firebird
NuGet Url: FirebirdSql.EntityFrameworkCore.Firebird
EntityFrameworkCore.FirebirdSql is an ORM, created at the top of the Firebird ADO.NET (FirebirdSql.Data.FirebirdClient) Data Provider. It allows you to use Entity Framework Core 2.0 as an extension, to access Firebird (2.x, 3.x, 4.x)
PM> Install-Package EntityFrameworkCore.FirebirdSQL
NuGet Url: EntityFrameworkCore.FirebirdSQL
It allows Entity Framework Core to be used with IBM Data Server (DB2) and IBM maintains it.
PM> Install-Package IBM.EntityFrameworkCore
NuGet Url: IBM.EntityFrameworkCore
It is a third party database provider and allows Entity Framework Core to be used with PostgreSql database.
PM> Install-Package Devart.Data.PostgreSql.EFCore
NuGet Url: Devart.Data.PostgreSql.EFCore
It is a third party database provider and allows Entity Framework Core to be used with SQLite database.
PM> Install-Package Devart.Data.SQLite.EFCore
NuGet Url: Devart.Data.SQLite.EFCore
It is a third party database provider and allows Entity Framework Core to be used with MySql database.
PM> Install-Package Devart.Data.MySql.EFCore
NuGet Url: Devart.Data.MySql.EFCore
It allows Entity Framework Core to be used with Jet (Microsoft Access mdb or accdb format files)
PM> Install-Package EntityFrameworkCore.Jet -Version 2.0.0
NuGet Url: EntityFrameworkCore.Jet
ZZZ Projects