var parent = await _context.Parents.Include(p => p.ChildrenArray).FirstAsync(p => p.Sub == request.Sub);
// one of the nested properties is a List
_mapper.Map(request, parent);
// error here
await _context.SaveChangesAsync();
var parent = await _context.Parents.Include(p => p.ChildrenArray).FirstAsync(p => p.Sub == request.Sub);
// one of the nested properties is a List
_mapper.Map(request, parent);
// error here
await _context.SaveChangesAsync();