简体   繁体   English

如何在数据表中获取“件”列的总和?

[英]How can I get a sum for the column “pieces” in a datatable?

How can I get a sum for the column "pieces" in a datatable? 如何在数据表中获取“件”列的总和? Say I had the following table. 说我有下表。 How can I calculate the "total" pieces for article="milk" and artno="15"? 如何计算article =“milk”和artno =“15”的“总”件数?

Columns:   article     artno    pieces
Rows:
1          milk        15       1
2          water       12       1
3          apple       13       2
4          milk        15       1
5          milk        16       1
6          bread       11       2
7          milk        16       4

The Result of the my new DataTable should be this: 我的新DataTable的结果应该是这样的:

Columns:   article     artno    pieces
Rows:
1          bread       11       2
2          water       12       1
3          apple       13       2
4          milk        15       2
5          milk        16       5

My Code: 我的代码:

foreach (DataRow foundDataRow in foundRows1)
{
    int i = 0;
    foreach (DataRow dataRow in foundRows2)
    {
        if (object.Equals(dataRow.ItemArray[0], foundDataRow.ItemArray[0])
            && object.Equals(dataRow.ItemArray[3], foundDataRow.ItemArray[3]))
        {
            i = i + Convert.ToInt16(dataRow.ItemArray[4]);
        }
    }
    Debug.Print(i.ToString());
}

Sorry, but i'm new DataBase developer and my english speak language is not so good. 对不起,但我是新的DataBase开发人员,我的英语口语不太好。

使用DataTable.Compute方法,您可以:

int sum = (int)table.Compute("Sum(pieces)", "article = 'milk' AND artno='15'");

You could use the AsEnumerable method like so: 您可以使用AsEnumerable方法,如下所示:

var results = dataTable.AsEnumerable()
                       .Where(row => row.Field<string>("article") == "milk" && 
                                     row.Field<int>("artno") == 15)
                       .Select(row => row.Field<int>("pieces"))
                       .Sum();

Using Michael's suggestion with 1 less step: 迈克尔的建议少了一步:

var results = dataTable.AsEnumerable()
                       .Where(row => (row.Field<string>("article ") == "milk") &&
                                     (row.Field<int>("artno") == 15))
                       .Sum(row => row.Field<int>("pieces"));

(This is using Linq to DataSet ) (这是使用Linq到DataSet

in a .NET 4 windows application, this snippet of code gives 9 in the sum variable: 在.NET 4 Windows应用程序中,这段代码在sum变量中给出了9:

    DataTable dt = new DataTable("aaa");

    dt.Columns.Add("pieces", typeof(int));

    dt.Rows.Add(new object[] { 1 });
    dt.Rows.Add(new object[] { 3 });
    dt.Rows.Add(new object[] { 5 });

    var sum = dt.Compute("SUM(pieces)", string.Empty);

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM