Fix error when moving child entities between parents with DeleteBehavior.NoAction #36772
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.
When moving a child entity between parents with a required relationship configured with
DeleteBehavior.NoAction
, EF Core incorrectly throws anInvalidOperationException
during change tracking:Root Cause
The issue occurs in
InternalEntryBase.HandleNullForeignKey
. When a child is removed from a parent collection, the foreign key properties are set to null, which triggers immediate conceptual null validation ifDeleteOrphansTiming.Immediate
is configured. This validation doesn't account for the fact that the child might be added to another parent in the same change tracking cycle.Solution
Modified
HandleNullForeignKey
to defer conceptual null validation forDeleteBehavior.NoAction
relationships. This allows entity reparenting to complete before validation occurs, while still properly detecting truly orphaned entities at save time.The fix:
DeleteBehavior.NoAction
Testing
Added comprehensive test coverage including:
All existing tests continue to pass, ensuring no regressions in related functionality.
Fixes #35949.
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.