For optional relationships (when Foreign Key can accept Null
), a new ClientSetNull
behavior has been introduced since EF Core 2.0 as the default option for delete behavior DeleteBehavior.ClientSetNull
.
This has SetNull
semantics for tracked entities and Restrict
(no action) behavior for database records not loaded into memory.
Microsoft docs say that:
If you want the database to also try to propagate null values to child foreign keys even when the child entity is not loaded, then use
SetNull
. However, note that the database must support this, and configuring the database like this can result in other restrictions, which in practice often makes this option impractical. This is why SetNull is not the default.
But I think it is usually normal to set FK of dependent entities to Null when the associated parent is deleted (every where in db). And also, what's those "other restrictions, which in practice often makes this option impractical.." as claimed above?
Cascade delete automatically deletes dependent records or sets null to ForeignKey columns when the parent record is deleted in the database. Cascade delete is enabled by default in Entity Framework for all types of relationships such as one-to-one, one-to-many and many-to-many.
The EF Core in-memory database does not currently support cascade deletes in the database.
Indicates how a delete operation is applied to dependent entities in a relationship when the principal is deleted or the relationship is severed. Behaviors in the database are dependent on the database schema being created appropriately.
Those other restrictions the docs are referring to are, as far as I know, circular or multi path cascades.
MS Sql Server for example does not allow cascades (both delete and set null) if
You can't even create the constraint.
EF core can circumvent this limitation with ClientSetNull. EF handles the set null operation, but it can only do so if all the affected entities are loaded into memory.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With