I have a root BusinessListBase object. In the Fetch method I have this code
sortedList = new Csla.SortedBindingList<Customer>( customers );
bindingSource.DataSource = sortedList;
In the save method I have
Customers temp = customers.Clone();
customers = temp.Save();
sortedList = new Csla.SortedBindingList<Customer>( customers );
bindingSource.DataSource = sortedList;
but I have already lost any existing sorting?
Any ideas of how to get the existing sorting if any and reapply it after save?
Copyright (c) Marimer LLC