vote up 1 vote down star

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?

flag
That did the trick. Thank you very much. – rivera.reyrivera Feb 15 at 7:07

2 Answers

vote up 2 vote down check

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

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

or:

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

If typed:

 var sum = table.Sum(x=>x.SomeProperty);
link|flag
That did the trick. Thank you very much – rivera.reyrivera Feb 15 at 7:08
vote up 0 vote down

101 Linq Samples

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.