Fix for #3296. Large paged Listview sorted by custom property has blank custom properties

This commit is contained in:
Warwick Buzacott
2018-10-15 16:53:10 +11:00
committed by Sebastiaan Janssen
parent 4d5f952aa6
commit a09660128a

View File

@@ -385,10 +385,12 @@ namespace Umbraco.Core.Persistence.Repositories
if (orderDirection == Direction.Descending)
{
sortedSql.OrderByDescending("CustomPropData.CustomPropVal");
sortedSql.OrderByDescending("umbracoNode.id");
}
else
{
sortedSql.OrderBy("CustomPropData.CustomPropVal");
sortedSql.OrderBy("umbracoNode.id");
}
}