Skip to content

Commit

Permalink
Fixed issue with IncrementalLoadingCollection within AdvancedCollecti…
Browse files Browse the repository at this point in the history
…onView
  • Loading branch information
Kevin Nolan committed Feb 24, 2025
1 parent e2eb2c7 commit eb7aebd
Showing 1 changed file with 1 addition and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -386,16 +386,7 @@ int IComparer<object>.Compare(object x, object y)
if (!_sortProperties.Any())
{
var listType = _source?.GetType();
Type type;

if (listType != null && listType.IsGenericType)
{
type = listType.GetGenericArguments()[0];
}
else
{
type = x.GetType();
}
Type type = x.GetType();

foreach (var sd in _sortDescriptions)
{
Expand Down

0 comments on commit eb7aebd

Please sign in to comment.