本文介绍了如何计算在LINQ(到数据集)数据表中的列的总和?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我刚开始对LINQ读了,我要开始把它纳入我的code。我知道如何通过在Foreach源,通过行-ing或在特定的列做一个compute.sum来计算一个数据表的列的总和。我该怎么做与LINQ相当于数据集?

I'm just started to read up on LINQ and I want to start incorporating it into my code. I know how to compute the sum of a DataTable's column by either "Foreach"-ing through the rows or by doing a compute.sum on the specific column. How do I do the equivalent with LINQ to DataSet?

推荐答案

如果无类型(更换 INT 用正确的数据类型):

If untyped (replace int with the correct data type):

 var sum = table.AsEnumerable().Sum(x=>x.Field<int>(3));

 var sum = table.AsEnumerable().Sum(x=>x.Field<int>("SomeProperty"));

如果键入:

 var sum = table.Sum(x=>x.SomeProperty);

这篇关于如何计算在LINQ(到数据集)数据表中的列的总和?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 14:13