Basically, I have a collection of items. I want to sort on a String property. The problem is that any Empty string shows up at the top of the list when I do ascending...
ICollectionView view = CollectionViewSource.GetDefaultView(MyCollection);
view.SortDescriptions.Add(new SortDescription("MyProperty", ListSortDirection.Ascending));
Resulting List:
"" (String.Empty)
"" (String.Empty)
"" (String.Empty)
A
B
C
D
Do I have to create my own SortDescription class or something?