Document SQL parameter name simplification as a low-impact breaking change in EF Core 10#5406
Open
Copilot wants to merge 2 commits into
Open
Document SQL parameter name simplification as a low-impact breaking change in EF Core 10#5406Copilot wants to merge 2 commits into
Copilot wants to merge 2 commits into
Conversation
Copilot created this pull request from a session on behalf of
AndriySvyryd
June 30, 2026 19:17
View session
Contributor
There was a problem hiding this comment.
Pull request overview
Documents an EF Core 10 low-impact breaking change where generated SQL parameter names are simplified (e.g., @__city_0 → @city) so that the breaking changes page matches the behavior introduced in dotnet/efcore#35200.
Changes:
- Added a new “SQL parameter names are now simplified” entry to the EF Core 10 breaking changes summary table (Low impact).
- Added a full breaking-change section describing old/new behavior, rationale, and mitigations for code that depends on exact parameter names.
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.
dotnet/efcore#35200 simplified generated SQL parameter names (dropping the
__prefix and trailing counter), which was not yet captured in the EF Core 10 breaking changes page.Changes
SQL parameter names are now simplifiedrow (Low impact) toentity-framework/core/what-is-new/ef-core-10.0/breaking-changes.md.CommandTextorParameterName).Behavior documented
Note
The issue referenced for context (efcore#38478) is an unrelated NuGet version-mismatch bug report; the content here is based on PR #35200 and the existing
whatsnew.mdentry describing the@__city_0→@citychange. The section cites the PR rather than that issue.