I Would like to do update child entities when updating parent entity.
Most solutions, like "How to add/update child entities when updating a parent entity in EF", handle this issue manually writing a lot of code for each case.
I know that there is some tools like "Trackable Entities" that track changes and updates child entities based on the parent entity. but it is not compatible with "Core" version. (I don't want to use entire .net framework)
Is there any tool or easier way to do this task?