Pomelo.EntityFrameworkCore.MySql
Pomelo.EntityFrameworkCore.MySql copied to clipboard
Entity Framework Core provider for MySQL and MariaDB built on top of MySqlConnector
See https://github.com/dotnet/efcore/issues/22957 - "Full support for custom provider aggregate functions" It seems like this translation became possible in EF Core 7.
I have added global query filters to some of my entities  Unfortunately, the generated sql, using this entity is wrong The query:  When queryfilters are disabled by adding...
### Steps to reproduce Create a table which consists of the value '0000-00-00 00:00:00' for the date time column. ### The issue When I try to fetch the row with...
### Steps to reproduce I need to map mysql timestamp field with default value and on update clause to long. So I added the following definitions for the Tester.Ticks field...
### Steps to reproduce ### Table ```csharp [Table("T_User_Message_PushSettings")] public class UserMessagePushSettings { public long Id { get; set; } /// /// 互动推送 /// [Comment("互动推送,0-不推送,1-推送"), Column(TypeName = "TINYINT")] public MessagePushSettingEnum Interactive...
Hi, I need to call a Store Procedure that has no return as it is just an update. How can I accomplish that? Using version 7.0
### Steps to reproduce Trying to connect to RDS Proxy for MySql while using `ServerVersion.AutoDetect(rdsProxyConnectionString)`. ### The issue When using AutoDetect for server version, app hangs indefinetly when it tries...
### Steps to reproduce Ideally include a complete code listing that we can run to reproduce the issue. Alternatively, you can provide a project/solution that we can run. ### The...
### Steps to reproduce The issue doesn't have exact steps to reproduce. ``` public async Task ExecuteAsync(Func action) { IExecutionStrategy strategy = _context.Database.CreateExecutionStrategy(); return await strategy.ExecuteAsync(async () => { await...
### Steps to reproduce Ideally include a complete code listing that we can run to reproduce the issue. Alternatively, you can provide a project/solution that we can run. ### The...