What I would like to do is duplicate/copy my ...School... object and all of its children/associations in EF Core...I have something like the following: ...var item = await _db.School
.AsNoTracking()
.Include(x => x.Students)
.Include(x => x.Teachers)
.Inc...