9

我正在尝试从数据表中获取汇总值。但无法弄清楚如何。在 c# 中看到了一些示例,但无法将这些示例转换为 vb.net。

我有数据表

Month, campaign, sales, leads, gross
1           1                5         10       1000
1            2               0          5         0
2            1               2          0         300
2            2               1          3         200

我需要得到一个结果:

Month, sales, leads, gross
1           5        15       1000
2           3         3         500

我不想手动循环和组合值。请帮忙

4

1 回答 1

13

你想Group by Month吗?您可以使用Sum对组求和:

Dim query = From row In dt
        Group row By Month = row.Field(Of Int32)("Month") Into MonthGroup = Group
        Select New With {
            Key Month,
            .Sales = MonthGroup.Sum(Function(r) r.Field(Of Int32)("Sales")),
            .Leads = MonthGroup.Sum(Function(r) r.Field(Of Int32)("Leads")),
            .Gross = MonthGroup.Sum(Function(r) r.Field(Of Int32)("Gross"))
       }

For Each x In query
    Console.WriteLine("Month:{0} {1} {2} {3}", x.Month, x.Sales, x.Leads, x.Gross)
Next

这是 Linq 查询语法和方法语法的混合体。

于 2012-12-21T23:11:00.637 回答