I'm using System.Linq.Dynamic to group a list of objects into a new grouped list of list of objects with the both code:
Dim lstGroupedFilterNew = lstDataSource _
.GroupBy("New (Unit_ID, Itinerary_ID Driver_ID)", "grp") _
.[Select](Function(grp) grp.ToList()).ToList()
But i'm get error lambda expression cannot be converted to 'string' because 'string' is not a delegate type on my select clause.