@@ -57,23 +57,22 @@ The codebase is prepared for EF Core 10 upgrade when .NET 10 becomes available,
5757
5858Currently tested versions are:
5959
60+ - MySQL 8.4
6061- MySQL 8.0
62+ - MariaDB 11.6
63+ - MariaDB 11.5
64+ - MariaDB 11.4 (LTS)
6165- MariaDB 11.3
62- - MariaDB 11.2
63- - MariaDB 11.1
64- - MariaDB 11.0
6566- MariaDB 10.11 (LTS)
6667- MariaDB 10.6 (LTS)
6768- MariaDB 10.5 (LTS)
68- - MariaDB 10.4 (LTS)
6969
7070## Schedule and Roadmap
7171
7272Milestone | Status | Release Date
7373----------|----------|-------------
74749.0.8 | Released | 2025-08-05
75759.0.0 | Released | 2025-08-05
76- 9.0.0-preview.3.efcore.9.0.0 | Released | 2025-02-23
77768.0.3 | Released | 2025-03-02
78777.0.0 | Released | 2023-01-16
79786.0.3 | Released | 2024-03-16
@@ -124,7 +123,7 @@ Ensure that your `.csproj` file contains the following reference:
124123
125124### 2. Services Configuration
126125
127- Add ` Pomelo.EntityFrameworkCore.MySql ` to the services configuration in your the ` Startup.cs ` file of your ASP.NET Core project:
126+ Add ` Pomelo.EntityFrameworkCore.MySql ` to the services configuration in your ` Startup.cs ` file of your ASP.NET Core project:
128127
129128``` c#
130129public class Startup
@@ -138,7 +137,7 @@ public class Startup
138137 // Use 'MariaDbServerVersion' for MariaDB.
139138 // Alternatively, use 'ServerVersion.AutoDetect(connectionString)'.
140139 // For common usages, see pull request #1233.
141- var serverVersion = new MySqlServerVersion (new Version (8 , 0 , 40 ));
140+ var serverVersion = new MySqlServerVersion (new Version (8 , 4 , 6 ));
142141
143142 // Replace 'YourDbContext' with the name of your own DbContext derived class.
144143 services .AddDbContext <YourDbContext >(
0 commit comments