Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a linq query (not database-related) with OrderBy and ThenBy

var sortedList = unsortedList
                .OrderBy(foo => foo.Bar) //this property access is relatively fast
                .ThenBy(foo => foo.GetCurrentValue()) //this method execution is slow

getting foo.Bar is fast, but executing foo.GetCurrentValue() is very slow. The return value only matters if some members have equal Bar values, which happens rarely but important to be considered in case it happens. Is it possible to choose to only execute the ThenBy clause when it's necessary to tie-break in case of equal Bar values? (i.e. will not be executed if foo.Bar values are unique).

Also, actually Bar is also a bit slow, so it is preferred not to invoke it twice for the same object.

share|improve this question

5 Answers

up vote 3 down vote accepted

This is a bit clumsy, but I'm sure it can be improved - maybe it won't be done in one linq statement, but it should work:

var sortedList2 = unsortedList
                .OrderBy(foo => foo.Bar)
                .GroupBy(foo => foo.Bar);

            var result = new List<Foo>();
            foreach (var s in sortedList2)
            {
                if (s.Count() > 1)
                {
                    var ordered = s
                        .OrderBy(el => el.GetCurrentValue());
                    result.AddRange(ordered);
                }
                else
                {
                    result.AddRange(s);
                }
            }

UPDATE:
We can argue if that's an improvement, but it looks more concise at least:

var list3 = (from s in sortedList2
             let x = s.Count()
             select x == 1 
                    ? s.Select(el => el) 
                    : s.OrderBy(el => el.GetCurrentValue()))
             .SelectMany(n => n);

UPDATE2:

You can use Skip(1).Any() instead of Count() - this should avoid the enumeration of the whole sequence I guess.

share|improve this answer
+1, Not so fond of the .Count(). Since s needs to be enumerated anyway, you only add another enumeration. Sorting a list of one element doesn't take very long – skarmats May 22 '12 at 8:38
Though, it really depends on the implementation of the sorter. Dunno ;) Does anyone know, if GroupBy takes advantage of the IOrderedEnumerable? – skarmats May 22 '12 at 8:44
@skarmats - would using Skip(1).Any() instead of Count() be what you are looking for ? – Joanna Turban May 23 '12 at 5:02
+1 : Some good ideas here. – David B May 23 '12 at 14:16

Since you are not in a database, and you need a tight control over the sorting, you could use a single OrderBy with a custom IComparer that accesses only what it needs, and does not perform unnecessary evaluations.

share|improve this answer
But, if I do this, the Compare method might be caleld more than once for the same object, right? like the sort algorithm will try to compare A-B then A-C, A-D, etc., so probably A.Bar (the primary sort criteria) will be called more than once? – Louis Rhys May 22 '12 at 6:41
@LouisRhys This is correct, the compare will be called on the average Log2(N) times, but that is the same number as the Bar would be calculated without the custom comparer. If calculating a property takes long, you can always cache the result in a private variable, so that the number of invocations beyond 1 would not matter at all. – dasblinkenlight May 22 '12 at 8:44

Try this one

var sortedList = unsortedList.OrderBy(foo => foo.Bar);

if(some_Condition)
{ 
   sortedList = sortedList.OrderBy(foo => foo.GetCurrentValue()); 
}
share|improve this answer
where would the value of some_condition be from? and why is the list resorted by get current value? I want the getcurrentvalue to be used only to help sorting when there are two foos with the same bar value – Louis Rhys May 22 '12 at 5:48
var query = unsortedList
  .GroupBy(foo => foo.Bar)
  .OrderBy(g => g.Key)
  .SelectMany(g => g.Skip(1).Any() ? g.OrderBy(foo => foo.GetCurrentValue()) : g);

This has the obvious downside of not returning IOrderedEnumerable<Foo>

share|improve this answer

I changed Joanna Turban's solution and developed the following extension method:

public static IEnumerable<TSource> OrderByThenBy<TSource, TKey>(this IEnumerable<TSource> source, Func<TSource, TKey> orderBy, Func<TSource, TKey> thenBy)
{
    var sorted = source
        .Select(s => new Tuple<TSource, TKey>(s, orderBy(s)))
        .OrderBy(s => s.Item2)
        .GroupBy(s => s.Item2);

    var result = new List<TSource>();
    foreach (var s in sorted)
    {
        if (s.Count() > 1)
            result.AddRange(s.Select(p => p.Item1).OrderBy(thenBy));
        else
            result.Add(s.First().Item1);
    }
    return result;
}

Found in: https://mytoolkit.svn.codeplex.com/svn/Shared/Utilities/EnumerableExtensions.cs

share|improve this answer
what's item1 and item2 – Louis Rhys Feb 8 at 1:56
Its defined in the .NET framework's Tuple class, its only used in this method internally... – Rico Suter Feb 8 at 13:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.