BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
QueryableCollectionView view = new QueryableCollectionView(viewM.Orders); view.SortDescriptions.Add(new SortDescription() { PropertyName = "OrderID", Direction= ListSortDirection.Descending }); view.GroupDescriptions.Add(new PropertyGroupDescription() { PropertyName = "OrderID" }); view.Filter = FilterRecord; //Get the ordered information when grouping not applied view.Records //Get the ordered information when grouping applied view.TopLevelGroup.DisplayElements //Get the groups list when view.TopLevelGroup.Groups |