up vote 8 down vote favorite
1
share [g+] share [fb]

let's say that I have a table called Items (ID int, Done int, Total int)

I can do it by two queries:

int total = m.Items.Sum(p=>p.Total)
int done = m.Items.Sum(p=>p.Done)

But I'd like to do it in one query, something like this:

var x = from p in m.Items select new { Sum(p.Total), Sum(p.Done)};

Surely there is a way to call aggregate functions from LINQ syntax...?

link|improve this question

I assume you want to have a single roundtrip to the database. – Steven Mar 12 '10 at 11:24
feedback

5 Answers

up vote 8 down vote accepted

This will do the trick:

from p in m.Items
group p by p.Id into g
select new
{
    SumTotal = g.Sum(x => x.Total), 
    SumDone = g.Sum(x => x.Done) 
};
link|improve this answer
Or when Item has no unique identifier, you could write group p by p into g. – Steven Mar 12 '10 at 11:30
That did the trick, albeit with a modification: from p in m.Items group p by p.Id into g select new { SumTotal = g.Sum(r => r.Total), SumDone = g.Sum(r => r.Done) } – Axarydax Mar 12 '10 at 11:33
You're right, p was already used in the query. Fixed it. – Steven Mar 12 '10 at 11:49
feedback

How about

   m.Items.Select(item => new { Total = item.Total, Done = item.Done })
          .Aggregate((t1, t2) => new { Total = t1.Total + t2.Total, Done = t1.Done + t2.Done });
link|improve this answer
feedback
    from p in m.Items
    group p by 1 into g
    select new { SumTotal = g.Sum(x => x.Total), SumDone = g.Sum(x => x.Done) }
link|improve this answer
feedback

With a helper tuple class, either your own or—in .NET 4—the standard ones you can do this:

var init = Tuple.Create(0, 0);

var res = m.Items.Aggregate(init, (t,v) => Tuple.Create(t.Item1 + v.Total, t.Item2 + v.Done));

And res.Item1 is the total of the Total column and res.Item2 of the Done column.

link|improve this answer
feedback

Figuring out where to extract the sums or other aggregate in the rest of my code confused me, until I remembered that the variable I constructed was an Iqueryable. Suppose we have a table in our database composed of Orders, and we want to produce a summary for the ABC company:

var myResult = from g in dbcontext.Ordertable
               group p by (p.CUSTNAME == "ABC") into q  // i.e., all of ABC company at once
               select new
{
    tempPrice = q.Sum( x => (x.PRICE ?? 0m) ),  // (?? makes sure we don't get back a nullable)
    tempQty = q.Sum( x => (x.QTY ?? 0m) )
};

Now the fun part -- tempPrice and tempQty aren't declared anywhere but they must be part of myResult, no? Access them as follows:

Console.Writeline(string.Format("You ordered {0} for a total price of {1:C}",
                                 myResult.Single().tempQty,
                                 myResult.Single().tempPrice ));

A number of other Queryable methods could be used as well.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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