Pomelo.EntityFrameworkCore.MySql icon indicating copy to clipboard operation
Pomelo.EntityFrameworkCore.MySql copied to clipboard

Entity Framework Core provider for MySQL and MariaDB built on top of MySqlConnector

Results 216 Pomelo.EntityFrameworkCore.MySql issues
Sort by recently updated
recently updated
newest added

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 ![image](https://user-images.githubusercontent.com/57106402/230580203-b0c740b4-c900-4be1-abb9-73c60edee928.png) Unfortunately, the generated sql, using this entity is wrong The query: ![image](https://user-images.githubusercontent.com/57106402/230583256-14fb1bc2-7b48-439b-85bc-1b4cd7580f0a.png) When queryfilters are disabled by adding...

type-question

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

type-question

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

type-question
needs-more-info

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