VOOZH about

URL: https://www.nuget.org/packages/Aiursoft.EntityFrameworkCore.MySql/

⇱ NuGet Gallery | Aiursoft.EntityFrameworkCore.MySql 10.0.1-servicing.1




👁 Image
Aiursoft.EntityFrameworkCore.MySql 10.0.1-servicing.1

This is a prerelease version of Aiursoft.EntityFrameworkCore.MySql.
dotnet add package Aiursoft.EntityFrameworkCore.MySql --version 10.0.1-servicing.1
 
 
NuGet\Install-Package Aiursoft.EntityFrameworkCore.MySql -Version 10.0.1-servicing.1
 
 
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Aiursoft.EntityFrameworkCore.MySql" Version="10.0.1-servicing.1" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Aiursoft.EntityFrameworkCore.MySql" Version="10.0.1-servicing.1" />
 
Directory.Packages.props
<PackageReference Include="Aiursoft.EntityFrameworkCore.MySql" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Aiursoft.EntityFrameworkCore.MySql --version 10.0.1-servicing.1
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Aiursoft.EntityFrameworkCore.MySql, 10.0.1-servicing.1"
 
 
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Aiursoft.EntityFrameworkCore.MySql@10.0.1-servicing.1
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Aiursoft.EntityFrameworkCore.MySql&version=10.0.1-servicing.1&prerelease
 
Install as a Cake Addin
#tool nuget:?package=Aiursoft.EntityFrameworkCore.MySql&version=10.0.1-servicing.1&prerelease
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

About

Pomelo.EntityFrameworkCore.MySql is the Entity Framework Core (EF Core) provider for MySQL, MariaDB, Amazon Aurora, Azure Database for MySQL and other MySQL-compatible databases.

It is build on top of MySqlConnector.

How to Use

public class Startup
{
 public void ConfigureServices(IServiceCollection services)
 {
 // Replace with your connection string.
 var connectionString = "server=localhost;user=root;password=1234;database=ef";

 // Replace with your server version and type.
 // Use 'MariaDbServerVersion' for MariaDB.
 // Alternatively, use 'ServerVersion.AutoDetect(connectionString)'.
 // For common usages, see pull request #1233.
 var serverVersion = new MySqlServerVersion(new Version(8, 0, 29));

 // Replace 'YourDbContext' with the name of your own DbContext derived class.
 services.AddDbContext<YourDbContext>(
 dbContextOptions => dbContextOptions
 .UseMySql(connectionString, serverVersion)
 // The following three options help with debugging, but should
 // be changed or removed for production.
 .LogTo(Console.WriteLine, LogLevel.Information)
 .EnableSensitiveDataLogging()
 .EnableDetailedErrors()
 );
 }
}

Key Features

  • JSON support (both Newtonsoft.Json and System.Text.Json)
  • Spatial support
  • High performance

Related Packages

License

Pomelo.EntityFrameworkCore.MySql is released as open source under the MIT license.

Feedback

Bug reports and contributions are welcome at our GitHub repository.

Product Versions Compatible and additional computed target framework versions.
.NET net10.0 net10.0 is compatible.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Aiursoft.EntityFrameworkCore.MySql:

Package Downloads
Aiursoft.DbTools.MySql

A tool for database.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
10.0.1-servicing.1 3,077 11/15/2025