Pomelo.EntityFrameworkCore.MySql
Pomelo.EntityFrameworkCore.MySql copied to clipboard
Entity Framework Core provider for MySQL and MariaDB built on top of MySqlConnector
Hello, I tried to add support for TimeSpan.Total* members. I added two tests, I don't know how good the second test is - I can remove it or add another...
### Steps to reproduce 1. Create a Database: ``` CREATE DATABASE test1; USE test1; CREATE TABLE `test` ( `Id` INT NOT NULL, `Time` TIME NULL, PRIMARY KEY (`Id`) ) COLLATE='utf8mb4_general_ci';...
### The issue After updating the package from version 7.0.0 to 8.0.2 a column that is configured with `.SetAfterSaveBehavior(PropertySaveBehavior.Ignore)` is modified when the entity is updated. ### Steps to reproduce...
Could you please tell me if the connector using (8.0.2 - Entity Framework - MariaDB 11.3) currently supports the MaxScale sequential failover option? MySQL version: 11.3 Pomelo.EntityFrameworkCore.MySql version: 8.0.2 Microsoft.AspNetCore.App...
### Steps to reproduce Here is a link to a repository with a solution already configured and ready to replicate with branches, each with minor tweaks to the code (`master`...
### 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 Here is the minimal reproducible example. Use an empty database and the following data context: ```C# using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using Microsoft.EntityFrameworkCore; public class ApplicationDbContext :...
### Steps to reproduce **Setup** - Library (.NET8.0): which should contain the context and such - A "build-project", which contains all dependencies like `Microsoft.EntityFrameworkCore.Design` and such (basically all which I...
### Steps to reproduce Swap versions around, and note the response time from something like Postman. ### The issue Average response times on my API recently doubled and it took...
### Steps to reproduce I think this will be hard to reproduce as I've really got the bare minimum so it should be working. I have starter weather forecast Asp.Net...