lets say I have a Person class which contains list of child.
Not I would like to query database to get list of person with child inlcuded:
return context.Person.Include(p => p.Children);
Ok now I would like to modify that query so as a result I get list of Person but with only one child (lets say the oldest one sort by age desc)
Is it possible?
Thanks in advance