vote up 0 vote down star

Good morning,

Everything I can find in linq for aggregation has a "group by" clause. How would I write this query in LINQ? I have a list of date-value pairs, and I want to take the average of the values.

SELECT AVG(MySuff.Value) AS AvgValue FROM MyStuff

Regards, Alan.

flag

6 Answers

vote up 1 vote down check

The answer to modified example (I believe) is:

var average = (from a in MyStuff
              select a.Value).Average();
link|flag
1  
I would personally avoid the query expression in that case, and just use: var average = MyStuff.Average(a => a.Value). – Jon Skeet Nov 18 '08 at 16:01
vote up 0 vote down

A bit sorter

pairs.Average(a=>a.Value)

If there's no join, group or let, Query Expressions (from ...) are not worth in my opinion.

Olmo

link|flag
vote up 0 vote down

Thank you all for the help. Here is what I settled on, which works.

(from s in series select s).Average( a => a.Value )

Regards, Alan...R

link|flag
1  
Your query expression probably isn't doing anything useful. Try just s.Average(a => a.Value) – Jon Skeet Nov 18 '08 at 16:01
vote up 2 vote down

There are plenty of non-grouping aggregation operators in LINQ. Alan's answer shows you the Count operator, but MSDN lists others.

EDIT: Having seen your edit, it looks like you want the Average operator.

link|flag
vote up 1 vote down

It should be noted that Alan's LINQ code will yield exactly AlanR's SQL code, despite the fact that you might guess otherwise.

However, care should be exercised here. If it were written as:

var q = from a in MyStuff select a;
int count = q.count();
foreach(MyStuff m in q) {...}

Then that will generate two DB queries : the first as "select count(*)..." and the second as "select * ...."

link|flag
vote up 4 vote down

morning Alan:

int count = (from a in myContext.MyStuff
            select a).Count();

Assuming myContext is the DataContext.

Note that is gives you immediate execution, which you may not want.

You could instead store the results of the query in a var:

var allResults = from a in myContext.MyStuff
                 select a;

//sometime later when needed
int count = allResults.Count(); // executes the SQL query now!
link|flag
Sorry, I didn't realize my question wasn't specific enough. I'm going to re-word it a little. thanks anyway. – AlanR Nov 18 '08 at 15:47
And you owe me a beer for taking the name "Alan" :) – AlanR Nov 18 '08 at 15:48
Sorry! Had Alan been taken, AlanR would have been my next choice ;) – Alan Nov 18 '08 at 15:49

Your Answer

Get an OpenID
or

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