efcore.pg
efcore.pg copied to clipboard
Entity Framework Core provider for PostgreSQL
@dotnet/efteam, I needed a break from real work so I changed al SQL baselines to use the new raw string literals... Take a look, I think it looks great! ```...
As in https://github.com/dotnet/efcore/issues/28260, for SQL baselines etc.
Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.2.0 to 17.3.0. Release notes Sourced from Microsoft.NET.Test.Sdk's releases. v17.3.0 See the release notes here. v17.3.0-preview-20220612-01 See the release notes here. v17.3.0-preview-20220530-08 See the release notes here....
But require users to set it up explicitly, since this can be very heavy perf-wise. Raised in https://stackoverflow.com/questions/62021228/entity-framework-not-detecting-jsonb-properties-changes-in-c-sharp
Query generator build incorrect sql. Incorrect example: ```C# var groupings = _dbContext.Activities.AsNoTracking() .GroupBy(p => new {p.Actor, p.Type}) .OrderBy(p => p.Key.Actor) .ThenBy(p => p.Key.Type) .Select(g => new[] {g.Key.Actor, g.Key.Type, g.Count().ToString()}); ```...
I've seen some posts/issues indicating that Redshift is kind of supported, kind of not, etc. Is there any reason to believe that scaffolding a Redshift DB should work? I'm getting...
When interacting with date/time values which are outside the .NET types' ranges, Npgsql has some special provisions for this: PG type | CLR type | Meaning --------------------- | -------------- |...
I added a single property of type `Period` to an existing entity. ```c# public Period? Duration {get;set;} ``` I create a database migration using ```bash dotnet ef migrations add $1...
Hi there. Thank you for all your hard work. Currently, if you want all your enums to be mapped to corresponding Postgres enums, you'll have to register each one of...
This issue centralizes mapping design decisions for some advanced PostgreSQL types/objects: enums, user-defined ranges ### Current situation * Extensions have to be defined on the model (for migrations). * Enums...