From 8dd7bca585c31ca694a337408d6896f5a00efd1e Mon Sep 17 00:00:00 2001 From: Shay Rojansky Date: Wed, 30 Oct 2024 12:35:05 +0100 Subject: [PATCH] Add note on EFCore.PG jsonpath support --- conceptual/EFCore.PG/release-notes/9.0.md | 1 + 1 file changed, 1 insertion(+) diff --git a/conceptual/EFCore.PG/release-notes/9.0.md b/conceptual/EFCore.PG/release-notes/9.0.md index acab1815..ac84ccaf 100644 --- a/conceptual/EFCore.PG/release-notes/9.0.md +++ b/conceptual/EFCore.PG/release-notes/9.0.md @@ -61,6 +61,7 @@ Thanks to [@ChrisJollyAU](https://github.com/ChrisJollyAU) and [@Timovzl](https: * Translate `array.Where(i => i != x)` to `array_remove(array, x)` * Translate `DateOnly.DayNumber`, `DateOnly.FromDayNumber()` and simplify `dateOnly1.DayNumber - dateOnly2.DayNumber` to `dateOnly1 - dateOnly2`. +* Map the PostgreSQL `jsonpath` type to .NET string; this allows mapping to `jsonpath` columns. See the [9.0.0 milestone](https://github.com/npgsql/efcore.pg/milestone/61?closed=1) for the full list of Npgsql EF provider issues.