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();
|
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
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
|
||||
|
|||||||||||||||||
|
|
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:
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. |
||||
|
|
|
|||
|
|
|
For Link-to-Objects (Aggregate not supported in Linq-to-Sql). Performs in N(n) (ok, actually O(n+1))
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. |
||||
|
|
|||||||||
|
O(n)(and in general you aren't going to do any better). You could look atMaxBybut 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