Microting.EntityFrameworkCore.MySql 10.0.8

Prefix Reserved
dotnet add package Microting.EntityFrameworkCore.MySql --version 10.0.8
                    
NuGet\Install-Package Microting.EntityFrameworkCore.MySql -Version 10.0.8
                    
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="Microting.EntityFrameworkCore.MySql" Version="10.0.8" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Microting.EntityFrameworkCore.MySql" Version="10.0.8" />
                    
Directory.Packages.props
<PackageReference Include="Microting.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 Microting.EntityFrameworkCore.MySql --version 10.0.8
                    
#r "nuget: Microting.EntityFrameworkCore.MySql, 10.0.8"
                    
#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 Microting.EntityFrameworkCore.MySql@10.0.8
                    
#: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=Microting.EntityFrameworkCore.MySql&version=10.0.8
                    
Install as a Cake Addin
#tool nuget:?package=Microting.EntityFrameworkCore.MySql&version=10.0.8
                    
Install as a Cake Tool

About

Microting.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.

DISCLAIMER!!!

This is a fast moving version of Microting.EntityFrameworkCore.MySql intented to follow .net release cycle closely! There are no intentions for this package to implement new features. Feature requests needs to be directed at the originating Github repository

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

License

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

Feedback

Checkout the originating Github repository before filing any new issues.

Bug reports and contributions are welcome at our GitHub repository.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  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 (21)

Showing the top 5 NuGet packages that depend on Microting.EntityFrameworkCore.MySql:

Package Downloads
Microting.eForm

Package Description

VirtoCommerce.Platform.Data.MySql

Virto Commerce is a flexible B2B ecommerce solution that offers powerful tools for enterprise business users. https://virtocommerce.com

HZY.Framework.Repository.EntityFramework

EFCore、Repositories 、SqlServer、MySql、PgSql 、Oracel 、FreeSql 1、动态表名查询 2、监控EFCore 连接、事务、Sql、Sql耗时等统计信息 3、仓储多租户 查询过滤 4、批量数据拷贝 目前支持 mysql 和 sqlserver 5、Sql 字符串查询 6、仓储具有基本的 CRUD 目前框架使用案例:https://gitee.com/hzy6/HzyAdmin

ChemicalsBase

Package Description

Youshow.Ace.EntityFrameworkCore.MySql

EfCore的MySql扩展模块:提供EfCore对Mysql的操作能力

GitHub repositories (11)

Showing the top 11 popular GitHub repositories that depend on Microting.EntityFrameworkCore.MySql:

Repository Stars
Squidex/squidex
Headless CMS and Content Managment Hub
smartstore/Smartstore
A modular, scalable and ultra-fast open-source all-in-one eCommerce platform built on ASP.NET Core 10
IoTSharp/IoTSharp
IoTSharp is an open-source IoT platform for data collection, processing, visualization, and device management.
VirtoCommerce/vc-platform
Virto Commerce B2B Innovation Platform
colinin/abp-next-admin
这是基于vue-vben-admin 模板适用于abp vNext的前端管理项目
lingarr-translate/lingarr
Lingarr is an application that supports both local and SaaS translation services to translate subtitle files into a specified target language. With automated translation options, Lingarr simplifies translating subtitles.
linkdotnet/Blog
A blog (engine) completely written in C# and Blazor. It aims to be a simple use and easy to extend platform. Blogposts are written in Markdown and are rendered to HTML. This gives all the flexibility needed to express yourself but also have an easy way of creating posts in the first place.
IoTSharp/SilkierQuartz
SilkierQuartz can host jobs using HostService and Provide a web management tools for Quartz !
CnGal/CnGalWebSite
CnGal是一个非营利性的,立志于收集整理国内制作组创作的中文Galgame/AVG的介绍、攻略、评测、感想等内容的资料性质的网站。
PhenX/PhenX.EntityFrameworkCore.BulkInsert
Super fast bulk insertion for Entity Framework Core on SQL Server, PostgreSQL, Sqlite, MySQL and Oracle
TiCodeX/SQLSchemaCompare
TiCodeX SQL Schema Compare
Version Downloads Last Updated
10.0.8 24,691 5/17/2026
10.0.7 43,896 4/22/2026
10.0.6 2,699 4/21/2026
10.0.5 63,806 3/17/2026
10.0.3 39,679 2/16/2026
10.0.3-rc.1 2,766 2/11/2026
10.0.2-rc.1 3,216 2/9/2026
10.0.2-preview.1 7,560 1/16/2026
10.0.0-preview.3 5,141 1/5/2026
10.0.0-preview.2 1,925 1/2/2026
10.0.0-preview.1 1,740 12/29/2025
9.0.8 43,163 8/5/2025
9.0.0 495 8/4/2025