34

我在 Framework 3.5 上使用 C#。我希望通过两个属性快速分组一个通用列表<>。为了这个例子,假设我有一个带有 CustomerId、ProductId 和 ProductCount 属性的 Order 类型的列表。如何使用 lambda 表达式获得按 CustomerId 和 ProductId 分组的 ProductCounts 的总和?

4

4 回答 4

59
var sums = Orders.GroupBy(x => new { x.CustomerID, x.ProductID })
                 .Select(group => group.Sum(x => x.ProductCount));
于 2008-12-12T18:43:00.720 回答
16

我意识到这个线程已经很老了,但由于我只是在这个语法上苦苦挣扎,我想我会发布我的额外发现 - 你可以在一个查询中返回总和和 ID(不带 foreach),如下所示:

var sums = Orders
            .GroupBy(x => new { x.CustomerID, x.ProductID })
            .Select(group =>new {group.Key, ProductCount = group.Sum(x => x.ProductCount)});

对我来说,让它工作的棘手部分是总和必须是别名,显然......

于 2010-05-19T19:59:52.160 回答
7

或者,如果您想获取每个总和的 ID,您可以这样做

var customerAndProductGroups =
    from order in Orders
    orderby order.CustomerID, order.ProductID // orderby not necessary, but neater
    group order by new { order.CustomerID, order.ProductID };

foreach (var customerAndProductGroup in customerAndProductGroups)
{
    Console.WriteLine("Customer {0} has ordered product {1} for a total count of {2}",
        customerAndProductGroup.Key.CustomerID,
        customerAndProductGroup.Key.ProductID,
        customerAndProductGroup.Sum(item => item.ProductCount));
}
于 2008-12-14T23:40:20.320 回答
-1

var New1 = EmpList.GroupBy(z => z.Age).OrderBy(Employee => Employee.Key);

dataGridView1.DataSource = New1;

于 2013-04-01T14:17:52.373 回答