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

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...?

share|improve this question
I assume you want to have a single roundtrip to the database. – Steven Mar 12 '10 at 11:24

6 Answers

up vote 17 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) 
};
share|improve this answer
2  
Or when Item has no unique identifier, you could write group p by p into g. – Steven Mar 12 '10 at 11:30
1  
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
1  
You're right, p was already used in the query. Fixed it. – Steven Mar 12 '10 at 11:49

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 });
share|improve this answer
    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) }
share|improve this answer

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.

share|improve this answer

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.

share|improve this answer
//Calculate the total in list field values
//Use the header file: 

Using System.Linq;
int i = Total.Sum(G => G.First);

//By using LINQ to calculate the total in a list field,

var T = (from t in Total group t by Total into g select g.Sum(t => t.First)).ToList();

//Here Total is a List and First is the one of the integer field in list(Total)
share|improve this answer

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.