How can I do GroupBy Multiple Columns in LINQ

Something similar to this in SQL:

SELECT * FROM <TableName> GROUP BY <Column1>,<Column2>

How can I convert this to LINQ:

QuantityBreakdown
(
    MaterialID int,
    ProductID int,
    Quantity float
)

INSERT INTO @QuantityBreakdown (MaterialID, ProductID, Quantity)
SELECT MaterialID, ProductID, SUM(Quantity)
FROM @Transactions
GROUP BY MaterialID, ProductID
link|improve this question

feedback

3 Answers

up vote 162 down vote accepted

Use an anonymous type.

Eg

group x by new { x.Column1, x.Column2 }
link|improve this answer
+10 ,good answer – DeveloperX Nov 13 '11 at 18:38
feedback

Ok got this as:

var query = (from t in Transactions
             group t by new {t.MaterialID, t.ProductID}
             into grp
                    select new
                    {
                        grp.Key.MaterialID,
                        grp.Key.ProductID,
                        Quantity = grp.Sum(t => t.Quantity)
                    }).ToList();
link|improve this answer
great addition @NEV_RHAD – Mickey Perlstein May 3 at 13:32
feedback

Procedural sample

.GroupBy(x => new { x.Column1, x.Column2 })
link|improve this answer
thanks for including this, always helpful – InsidiousForce Apr 16 at 23:59
feedback

Your Answer

 
or
required, but never shown

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