I'm using C# on Framework 3.5. I'm looking to quickly group a Generic List<> by two properties. For the sake of this example lets say I have a List of an Order type with properties of CustomerId, ProductId, and ProductCount. How would I get the sum of ProductCounts grouped by CustomerId and ProductId using a lambda expression?
|
4
|
|
|
|
|
|
|
||
|
|
|
|
Alternatively, if you want to get the IDs for each sum, you could do this
|
||
|
|
