You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if a group record is deleted, all the items should be deleted as well. Probably this can be configured by a configurable cascade type to also handle case where this behaviour is not intended?
As for the communication to the server, only the delete operation for the group needs to be communicated, as the server cascades the delete operation to the children, which actually is a pretty common pattern.
The text was updated successfully, but these errors were encountered:
I've thought about this before, and it does seem to be a common use case. I know I've certainly wanted it before. I just haven't gotten around to actually implementing it. I'll definitely put it on the list though.
Is it possible to cascade the deletion of a parent entity to child entities? For instance for a config like this:
group.js:
item.js
if a
group
record is deleted, all theitems
should be deleted as well. Probably this can be configured by a configurable cascade type to also handle case where this behaviour is not intended?As for the communication to the server, only the delete operation for the
group
needs to be communicated, as the server cascades the delete operation to the children, which actually is a pretty common pattern.The text was updated successfully, but these errors were encountered: