Pomelo.EntityFrameworkCore.MySql
Pomelo.EntityFrameworkCore.MySql copied to clipboard
Entity Framework Core provider for MySQL and MariaDB built on top of MySqlConnector
If it does, is it working the same way as in SQL Server? Any extra code required?
Not sure if it is a bug, i know that under MS Sql server we can't do it without a trigger but using MySql it should be supported. Eventually, I...
### Steps to reproduce ```console git clone https://github.com/GunnerGuyven/ef-pomelo-fsharp-migrate-failure cd .\ef-pomelo-fsharp-migrate-failure\ dotnet tool restore dotnet restore dotnet ef migrations add test4 ``` ### The issue There is no actual database involved,...
This is just small adjust regarding the log output of the options extension. I am using a custom extension that also adds to the log. The missing `=` on the...
Adding dependabot for easy testing of dependency updates. I made the changes to allow contributers like my self to be able to see test results, without having to do a...
### The issue I am using AWS Aurora MySQL. Following below article, I have created a secondary readonly cluster and enabled write-forwarding on it so that all write queries sent...
Hello, I have some data like ```JSON { "318":{ "cid":8, "xPath":"//*[@id=\"app\"]/div[1]/div[2]/div[1]/div[1]/div[2]/div[1]/p[411]" }, "329":{ "cid":7, "xPath":"" } } ``` ```C# var readPostion = await _context.UserData.Where(x => x.UserId == userId) .Select(x =>...
I’m a very newbie here so I apologize if I had to post this in different place MySql retrieves timestamps in its server time zone. But it also offers the...
The `Match()` methods should return the relevance value of the match in the same way as the `MATCH...AGAINST` clause does in MySQL. For convenience, we keep the previous functionality to...
### Steps to reproduce [Tutorial: Create a complex data model - ASP.NET MVC with EF Core](https://docs.microsoft.com/en-us/aspnet/core/data/ef-mvc/complex-data-model) I am learning the official tutorial. ### The issue ```C# class Department { [DataType(DataType.Currency)]...