DataRow[] 聚合函数 C# - 附录

发布于 2024-11-30 11:50:01 字数 247 浏览 0 评论 0原文

我的问题源于此处的接受答案:

DataRow[] Aggregate Functions C#

在该答案中, “rows”对象是如何初始化的?

编辑: 就我而言,我有 mydataset.Tables[0].Rows 集合,我需要从中对特定列进行求和。

My question arised out of the accept answer here:

DataRow[] Aggregate Functions C#

In that answer, how is the "rows" object intialized?

EDIT:
In my case, I have mydataset.Tables[0].Rows collection, from which I need to SUM a particular column.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我是男神闪亮亮 2024-12-07 11:50:01

那么您可以创建自己的 DataRow 列表

List<DataRow> listOfRows = new List<DataRow>();

,或者您可以从 GridView 获取它们的集合。

var rows = gridView.Tables[0].Rows; //will return a collection of DataRows from your Gridview

或者来自数据集

var rows = dataSet.Tables[0].Rows;

Well you can create your own list of DataRow

List<DataRow> listOfRows = new List<DataRow>();

Or you can get collection of them from GridView.

var rows = gridView.Tables[0].Rows; //will return a collection of DataRows from your Gridview

Or from DataSet

var rows = dataSet.Tables[0].Rows;
白芷 2024-12-07 11:50:01

可能来自 LINQ 查询,例如:

List<DataRow> rows = (from row in mydataset.Tables[0].AsEnumerable()
                      select row).ToList();

Probably from a LINQ query like:

List<DataRow> rows = (from row in mydataset.Tables[0].AsEnumerable()
                      select row).ToList();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文