I've got a collectionviewsource whose source is an observable collection and i'm sorting like so ;
_viewSource.SortDescriptions.Add(new SortDescription() { PropertyName ="PropertyName", Direction = ListSortDirection.Ascending });
this all works great until I attempt to sort by a property in the list that has a null value. I then get a InvalidOperationException, "Failed to compare two elements in the array"
Do I have to implement my own IComparer class in order to work around the null issue or am I missing a trick?
Thanks in advance..