Pomelo.EntityFrameworkCore.MySql
Pomelo.EntityFrameworkCore.MySql copied to clipboard
Entity Framework Core provider for MySQL and MariaDB built on top of MySqlConnector
### Steps to reproduce Create a one-to-one navigation in EF Core with the identify field as the FK value and the non-identity field as the Principal. This will result in...
### The issue I am wondering what kind of issues we might have if we use [NDBCluster engine](https://dev.mysql.com/doc/mysql-cluster-excerpt/8.0/en/mysql-cluster-limitations-transactions.html)? I understand that NDBCLUSTER is not within supported engines and I guess...
Hi currently working on .net core 6 project and client have created MariaDb with Db login with auth_ed25519. Would like to check does Pomelo have support for auth_ed25519? MySQLConnector (https://www.nuget.org/packages/MySqlConnector.Authentication.Ed25519/)
### Steps to reproduce Simple inner join with the local list is generating an error. The same code is working well in DotNet Core 2.2 Packages referred in the project...
See https://github.com/dotnet/efcore/pull/29960.
### The issue I'm trying to insert some rows using EF Core 6 in a table with 1000 rows and one index and it takes 2 seconds per insert. This...
### The issue This error occurs in the interval of some requests. What can I do to solve it? ``` Exception message:An exception has been raised that is likely due...
### Steps to reproduce Call ``UseMySql[TContext](DbContextOptionsBuilder`1 optionsBuilder, DbConnection connection, ServerVersion serverVersion, Action`1 mySqlOptionsAction)`` with a MySqlConnector.MySqlConnection (Cannot change the connection string on an open connection) or MySqlDataAlias.MySql.Data.MySqlClient.MySqlConnection (Not allowed to...
### Steps to reproduce public DbSet SyncRunItems { get; set; } = null!; public DbSet SomethingPlatformParts{ get; set; } = null!; public class SomethingPlatformPart { public Guid SyncRunItemId { get;...
I am using Pomelo Efcore I encountered a situation while using MySQL and didn't know how to handle it. Our application needs to be deployed to different servers. Some servers...