DataRow[] 聚合函数 C# - 附录
我的问题源于此处的接受答案:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
那么您可以创建自己的
DataRow
列表,或者您可以从 GridView 获取它们的集合。
或者来自数据集
Well you can create your own list of
DataRow
Or you can get collection of them from GridView.
Or from DataSet
可能来自 LINQ 查询,例如:
Probably from a LINQ query like: