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

### Steps to reproduce Repro at https://github.com/rabberbock/PomeloMySqlJson ### The issue Json query for Newtonsoft JObject cannot be translated to DB query. ``` Unhandled exception. System.InvalidOperationException: The LINQ expression 'DbSet() .Where(b...

blocked
type-bug
Area-EntityFramework

Complex navigation queries that use `LEFT JOIN` in an outer query and `LEFT JOIN LATERAL` in an inner query, can return unexpected results. For more information, see [Bug #101276: Outer...

blocked
type-bug
Area-MySQL

This is more of a placeholder, but .NET 5.0 has added the [Half Struct](https://docs.microsoft.com/en-us/dotnet/api/system.half?view=net-5.0) which is a binary floating-point number that occupies 16 bits. However there's no C# type for...

type-enhancement

### Steps to reproduce 1. My database should be hosted in the AWS Aurora serverless cluster and accessed from the AWS lambdas. One of these lambdas is responsible for migrations...

For one of our client, we need to use the advanced MariaDb / MySql capability : dynamic columns declaration with BLOB. Is that possible with your EF Core connector ?...

type-enhancement

### Steps to reproduce ```csharp protected override void OnModelCreating(ModelBuilder modelBuilder) { EnumToStringConverter converter = new EnumToStringConverter(); modelBuilder .Entity() .Property(e => e.Enum) .HasConversion(converter); base.OnModelCreating(modelBuilder); } public class Example { public ExampleEnum...

type-investigation
Area-EntityFramework

### 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. ```cs public...

blocked
type-bug
Area-EntityFramework

### Steps to reproduce I had entity like: ``` public class ExampleEntity { public uint Id { get; set; } } ``` and changed type of ID to enum: ```...

type-investigation

### Steps to reproduce Upgrade package from 2.2.6 to 3.1.1 results in an error. ### The issue Before i change from FromSql to FromSqlRaw: ``` 'RelationalQueryableExtensions.FromSql(IQueryable, FormattableString)' is obsolete: 'For...

closed-question
type-question

### Steps to reproduce Add-Migration ``` public abstract class EntityBase : IEntityBase { protected EntityBase(); [NotMapped] public IDictionary RuntimeStringProperties { get; set; } public DateTime CreatedAt { get; set; }...

type-bug