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

### The issue When I call the Scaffold-DbContext command and I have a column with "set" datatype then I get this warning message: "Could not find type mapping for column...

type-enhancement

Most of the tests are currently not valid for MySQL and need to be fixed Also MySQL-specific tests should be added for thing like Fulltext and spatial indexes, json columns,...

### Steps to reproduce 1. Create a class library for DAL 2. Create an asp.net razor application. 3. Reference the dal project in ui project. 4. Include below references in...

Running EnsureCreated in EFCore against MariaDB get the following error: ``` Failed executing DbCommand (4ms) [Parameters=[], CommandType='Text', CommandTimeout='30'] CREATE SEQUENCE `listing_hilo` START WITH 1 INCREMENT BY 10 NO MINVALUE NO...

type-enhancement

`Pomelo.EntityFrameworkCore.MySql` is looking for core contributors to help with to help with maintenance and upgrades for the MySql Entity Framework Core Driver to track [EF Core Upstream Version 2.1](https://github.com/aspnet/entityframeworkcore) and...

announcement

### The issue When update a row, the `createdAt` column is set to `0001-01-01 00:00:00` instead of keep his value. ### Steps to reproduce #### Code ``` using (var context...

### Steps to reproduce I have a class like this: ` public class Version { public int Id { get; set; } public string VersionStr { get; set; } public...

### Steps to reproduce ``` class Test { public uint Id { get; set; } } ``` ``` protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity(entity => { entity.HasKey(e => e.Id)...

up-for-grabs

### Steps to reproduce Hi! I have some queries with a group by and async operator like this ` ``` var qryIndicadores = (from indicador in contexto.Indicador.Where(x => x.EmpresaId ==...

### Steps to reproduce Configure an Id column on a table as a MEDIUMINT UNSIGNED with an auto-generated value. ``` b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("MEDIUMINT UNSIGNED"); ``` Try to insert a record...

blocked
help-wanted