vote up 0 vote down star

New to LINQ.. I am curious as to the syntax to do the following SQL query in LINQ

SELECT MAX(TMPS), DAY FROM WEATHERREADINGS
GROUP BY WEATHERREADINGS.DAY

What I have so far:

var minTemps = from ps in ww.WEATHERREADINGS
               group ps by ps.DATE.Hour into psByHour
               select new
               {
                   HourOfDay = psByHour.Max().DATE.Hour,
                   MaxTemp = psByHour.Max().TMPS
               };

I am getting the following error while doing this:

Exception Details: System.InvalidOperationException: Could not format node 'New' for execution as SQL.

any help greatly appreciated!!

flag

75% accept rate

2 Answers

vote up 5 vote down check

I think the following is what you want. Note that you can get the key from the grouping so there is no need to aggregate there. You need to provide a mechanism to select the item to do the aggregation on for the other.

var maxTemps = from ps in ww.WEATHERREADINGS
               group ps by ps.Date.Hour into psByHour
               select new
               {
                    HourOfDay = psByHour.Key,
                    MaxTemp = psByHour.Max( p => p.TMPS )
               };
link|flag
Beat me by a few seconds +1 – José Basilio Nov 5 at 17:20
1  
nice catch with the "maxTemps" instead of "minTemps" hehe – andyp Nov 5 at 17:21
exactly what i was looking for thank you. now i can use this as a datasource and bind it to a grid – Will Nov 5 at 17:26
vote up 1 vote down

Or the functional approach that i tend to like better:

var result = ww.WEATHERREADINGS
                .GroupBy(a => a.Date.Hour)
                .Select(a => new
                       {
                         Hour = a.Key,
                         Max = a.Max(b => b.TMPS)
                       });
link|flag
+1 I agree, but I try to answer in the format the OP asks unless there's a compelling reason otherwise. – tvanfosson Nov 5 at 18:07
Your answer was spot on and correct (+1). I just wanted to provide the alternative. I tend to find that a lot of my junior mates tend to treat Linq just as a little SQL addon in C# and do not see the bigger picture of functional ways of doing things. When i expose them to the functional syntax then enlightment follows. – AZ Nov 6 at 9:11

Your Answer

Get an OpenID
or

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