I am to build a dynamic Expression Tree for GroupBy. All i want to achieve is like this. ...var NestedGrouped = listOfPerson.GroupByMany(x => x.Name,x=>x.Age).ToList();
...My Person Class is like :-...class Person
{
public string Name{ get; set; }
publ...