当前位置:  开发笔记 > 编程语言 > 正文

数据集中特定列的所有行

如何解决《数据集中特定列的所有行》经验,为你挑选了1个好方法。

我有一个看起来像这样的数据集:

| A | B | C | D | E | F | G | H | I | ... |   Z  |
--------------------------------------------------
| 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | ... |  26  |
|11 |22 |33 |44 |55 |66 |77 |88 |99 | ... | 2626 |
|111|222|333|444|555|666|777|888|999| ... |262626|

价值观无关。我只有很多专栏。

我想遍历特定列的所有行
是否可以不遍历所有列?因为现在我唯一能想到的就是这个(假设我想要D列的所有行)

C#

foreach(DataRow row in myDataSet.Tables(0).Rows)
   if(row.Column == myDataSet.Tables(0).Columns("D"))
      MessageBox.Show("I'm in Column B");

VB

For Each row As DataRow In myDataSet.Tables(0).Rows
If row.Column Is myDataSet.Tables(0).Columns("D") Then
MessageBox.Show("I'm in Column B")
End If
Next

但这会遍历所有列。我想使用类似的集合,
myDataSet.Tables(0).Columns("D").Rows但它不存在。



1> Tim Schmelte..:

DataRow有一个可以使用的索引器:

foreach(DataRow row in myDataSet.Tables[0].Rows)
    Console.WriteLine("I'm in Column B: " + row["D"]);

您可以通过字段的名称或顺序索引来访问它。在第三个重载,如果你有一个参考,可以使用 DataColumn和使用于其他列后发现。如果您不想“搜索”该列(尽管可以忽略不计),请使用以下方法:

DataColumn col = myDataSet.Tables[0].Columns["D"];
foreach(DataRow row in myDataSet.Tables[0].Rows)
        Console.WriteLine("I'm in Column B: " + row[col]);

但是您也可以使用Linq,例如,如果您想对此列中的所有值求和:

int dTotal = myDataSet.Tables[0].AsEnumerable().Sum(r => r.Field("D"));

推荐阅读
手机用户2502851955
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有