Sync to EF 11.0.0-preview.3.26167.112#3789
Merged
roji merged 1 commit intonpgsql:mainfrom Mar 18, 2026
Merged
Conversation
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
Syncs the Npgsql EF Core provider repository to EF Core 11.0.0-preview.3.26167.112, aligning package references and updating provider SQL baselines/tests to match upstream query generation changes.
Changes:
- Bumps EF Core + Microsoft.Extensions package versions in
Directory.Packages.props. - Updates many functional test SQL baselines for association/navigation, group-by, JSON, and bulk update/delete queries to reflect new SQL shapes (e.g., removed redundant JOINs/ORDER BY columns).
- Adjusts the
Identifiers_are_generated_correctlyassertion to match updated constraint-name uniquifier ordering.
Reviewed changes
Copilot reviewed 15 out of 15 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| Directory.Packages.props | Updates EF Core / Microsoft.Extensions versions to 11.0.0-preview.3.26167.112. |
| test/EFCore.PG.FunctionalTests/UpdatesNpgsqlTest.cs | Updates expected index name after upstream constraint-name uniquification ordering change. |
| test/EFCore.PG.FunctionalTests/Query/NorthwindGroupByQueryNpgsqlTest.cs | Refreshes group-by SQL baselines after upstream join/order-by simplifications. |
| test/EFCore.PG.FunctionalTests/Query/JsonQueryNpgsqlTest.cs | Updates JSON query baselines (notably reduced ORDER BY columns). |
| test/EFCore.PG.FunctionalTests/Query/Associations/OwnedTableSplitting/OwnedTableSplittingProjectionNpgsqlTest.cs | Updates owned-table-splitting baselines to match new projection/order-by shaping. |
| test/EFCore.PG.FunctionalTests/Query/Associations/OwnedNavigations/OwnedNavigationsProjectionNpgsqlTest.cs | Updates owned-navigation baselines to match upstream SQL shaping changes. |
| test/EFCore.PG.FunctionalTests/Query/Associations/Navigations/NavigationsStructuralEqualityNpgsqlTest.cs | Updates structural-equality baselines reflecting reordered projections and simplified ordering. |
| test/EFCore.PG.FunctionalTests/Query/Associations/Navigations/NavigationsSetOperationsNpgsqlTest.cs | Updates set-operation baselines reflecting reordered projections and simplified ordering. |
| test/EFCore.PG.FunctionalTests/Query/Associations/Navigations/NavigationsProjectionNpgsqlTest.cs | Updates navigation projection baselines (projection/order-by simplification). |
| test/EFCore.PG.FunctionalTests/Query/Associations/Navigations/NavigationsPrimitiveCollectionNpgsqlTest.cs | Updates primitive-collection navigation baselines for new SQL shape/order-by. |
| test/EFCore.PG.FunctionalTests/Query/Associations/Navigations/NavigationsMiscellaneousNpgsqlTest.cs | Updates miscellaneous navigation baselines for new SQL shape/order-by. |
| test/EFCore.PG.FunctionalTests/Query/Associations/Navigations/NavigationsIncludeNpgsqlTest.cs | Updates include baselines (projection/order-by simplification). |
| test/EFCore.PG.FunctionalTests/Query/Associations/Navigations/NavigationsCollectionNpgsqlTest.cs | Updates collection navigation baselines for new SQL shape/order-by. |
| test/EFCore.PG.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesNpgsqlTest.cs | Updates bulk delete baselines removing now-elided JOIN/parameters. |
| test/EFCore.PG.FunctionalTests/BulkUpdates/NonSharedModelBulkUpdatesNpgsqlTest.cs | Updates bulk delete baseline removing an unused LEFT JOIN. |
You can also share your feedback on Copilot code review. Take the survey.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Sync to the latest EF Core daily build:
11.0.0-preview.3.26167.112(from11.0.0-preview.3.26160.112).All 28,602 tests pass (28,110 functional + 492 unit, 0 failures).
Changes
Directory.Packages.propsto reference EF Core11.0.0-preview.3.26167.112Identifiers_are_generated_correctlytest for updated constraint name uniquification orderingEF Core PRs requiring updates
The following EF Core PRs caused changes that required updates in EFCore.PG:
SharedTableConvention.ProcessModelFinalizingto sort tables by name within schema groups, which changed which index gets the uniquifier suffix when truncated names collide.