How to Group a Collection
27 Mar 20181 minute to read
To sort your data, add the name of the property you want to sort to the Engine.TableDescriptor.GroupedColumns collection.
// Group column A.
groupingEngine.TableDescriptor.GroupedColumns.Add("A");
' Group column A.
groupingEngine.TableDescriptor.GroupedColumns.Add("A")