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

I am new to LINQ, but I am wondering if it is possible to use LINQ to pivot data from the following layout:

CustID | OrderDate | Qty
1      | 1/1/2008  | 100
2      | 1/2/2008  | 200
1      | 2/2/2008  | 350
2      | 2/28/2008 | 221
1      | 3/12/2008 | 250
2      | 3/15/2008 | 2150

into something like this:

CustID  | Jan- 2008 | Feb- 2008 | Mar - 2008 |
1       | 100       | 350       |  250
2       | 200       | 221       | 2150
share|improve this question

4 Answers

up vote 72 down vote accepted

Something like this?

        List<CustData> myList = GetCustData();

        var query = myList
            .GroupBy(c => c.CustId)
            .Select(g => new {
                CustId = g.Key,
                Jan = g.Where(c => c.OrderDate.Month == 1).Sum(c => c.Qty),
                Feb = g.Where(c => c.OrderDate.Month == 2).Sum(c => c.Qty),
                March = g.Where(c => c.OrderDate.Month == 3).Sum(c => c.Qty)
            });

GroupBy in Linq does not work the same as SQL. In SQL, you get the key and aggregates (row/column shape). In Linq, you get the key and any elements as children of the key (hierarchical shape). To pivot, you must project the hierarchy back into a row/column form of your choosing.

share|improve this answer
Just what I needed, thanks! – Mark Good Jun 23 '09 at 12:16
Great answer, Thanks – MegaMind Jan 23 '12 at 13:13

I answered similar question using linq extension method:

// order s(ource) by OrderDate to have proper column ordering
var r = s.Pivot3(e => e.custID, e => e.OrderDate.ToString("MMM-yyyy")
    , lst => lst.Sum(e => e.Qty));
// order r(esult) by CustID

(+) generic implementation
(-) definitely slower than David B's

Can anyone improve my implementation (i.e. the method does the ordering of columns & rows)?

share|improve this answer

There is a post on the MSDN forums on how to accomplish this. Basically, you need to push your data into a data table and then loop over the table to push it into a new, pivoted, datatable. MSDN (broken link)

share|improve this answer
Suboptimal imho. – Henrik Feb 19 '11 at 20:59
That link is dead – Colonel Panic Mar 28 '12 at 14:08

What you can do for this is to group your data on month, and then project it into a new datatable with column s for each month. The new table would be your pivot table.

I will write up some code in a bit.

edit: well i came back to start to write something up but it looks like some people posted something.

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.