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

How can I combine these two LINQ queries in one?

var maxEndDate = lstDates.Select(s => s.EndDate).Max();    
var record = lstDates.Where(s => s.EndDate == maxEndDate).First();
share|improve this question
3  
I like it the way it is... readable. – Ryan Bennett Aug 26 '11 at 18:00
1  
Frankly, this is fine. It's very readable and it's O(n) (and in general you aren't going to do any better). You could look at MaxBy but that's arguably not really "one query" (it won't be translated into SQL if your LINQ provider is a wrap on a database). – Jason Aug 26 '11 at 18:03
@Jason: +1, as it's important that this is readable. If you need high performance, just do not use LINQ. LINQ is good for make things clear. – Tigran Aug 26 '11 at 18:09

6 Answers

MaxBy is what you are looking for: http://code.google.com/p/morelinq/source/browse/trunk/MoreLinq/MaxBy.cs using it like this:

var record = lstDates.MaxBy(a => a.EndDate);

EDIT 1: As Jason pointed out this method is intended to be used only when you are working with LINQ to Objects. If you are querying against a database (and so you are using LINQ to SQL, or whatever) you should consider using a different approach.

Yours seems quite readable but, if it doesn't satisfy you, you could always call AsEnumerable on the IQueryable object and then use MaxBy method.

var record = lstDates.AsEnumerable().MaxBy(a => a.EndDate);

EDIT 2: One thing you could change in your query is the second statement. Try to shorten it as follows (in order to avoid using Where):

var record = lstDates.First(s => s.EndDate == maxEndDate);
share|improve this answer
Be careful, this can't be translated to SQL by any LINQ providers that I know of. It's arguable whether or not this counts as "one query." – Jason Aug 26 '11 at 18:04
You are right, I will update my answer. Thanks :) – AS-CII Aug 26 '11 at 18:06
var record = lstDates.OrderByDescending(d => d.EndDate).First();
share|improve this answer
2  
The OP's approach is O(n) whereas yours is O(n log n). – Jason Aug 26 '11 at 17:59
1  
Performance was not a prerequisite of the question. If the questioner wants the most performant option he can update his question. – Kevin Kalitowski Aug 26 '11 at 18:00
@Jason, not necessarily; it depends on the sort algorithm used and whether it can yield the maximum element without having to do the full sort. – Dan Bryant Aug 26 '11 at 18:00
@Kevin Kalitowski: Sorry, but I think it's important to point out the caveats of reducing this to one query (whether it be readability, or loss of performance, or that it might not be translatable to SQL by a LINQ provider). He might not have asked for the caveats, but they are important for a complete answer. – Jason Aug 26 '11 at 18:38
1  
Speaking of LINQ to SQL, this be a perfect LINQ to SQL usage since it could use an index on the EndDate column. – Kevin Kalitowski Aug 26 '11 at 19:06

Note that is actually best done without LINQ. Just loop through the list, keeping track of the maximum date, and the item at which that was first found:

DateTime maxDate = default(DateTime);
YourClass maxItem = null;

foreach (var item in lstDates)
{
    if (item.EndDate > maxDate)
    {
        maxDate = item.EndDate;
        maxItem = item;
    }
}

Now you only iterate once, and don't have to take the hit of sorting.

This does assume that you're using LINQ-to-Objects. If you're not, then this will retrieve the entire collection from the database (or wherever) which is undesirable. In that case, I would just use the method you already have.

share|improve this answer
var record = (from r in lstDates
              orderby r.EndDate descending
              select r).First();
share|improve this answer

For Link-to-Objects (Aggregate not supported in Linq-to-Sql). Performs in N(n) (ok, actually O(n+1))

var record = lstDates.Aggregate(lstDates.First(), 
                                (mx, i) => i.EndDate > mx.EndDate ? i : mx));

For those having trouble reading that, the first parameter is the initial value for the accumulator, which would normal aggregate values in the list, but here is just holding the current highest record. Then for each record in the list, the lambda function is called, given the current highest and the next item. It returns the new current highest.

share|improve this answer
Aww, I was just about to post a similar solution although I agree with dlev; if you are doing Linq2Objects most devs in my experience prefer a normal for loop over .Aggregate (the opposite is true for .Where/.Select/.OrderBy in my experience). – FuleSnabel Aug 26 '11 at 18:48
var record = lstDates.Where(s => s.EndDate == lstDates.Max(v => v.EndDate)).First();
share|improve this answer
1  
This isn't an improvement, and is arguably worse as it's less readable. – Jason Aug 26 '11 at 18:00
While I don't disagree, the question wasn't to improve the code, the question was how to combine them. If this had been on CodeReview, I wouldn't have given the same answer. – Matt McHugh Aug 26 '11 at 18:08
Actually, since the Max() would be performed each time the Where is called, we've gone from O(2n) (original), bypassed O(n ln n) (sorting), and reached O( n * n) for this one. – James Curran Aug 26 '11 at 18:34

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.