How to calculate sum of a DataTable's Column in LINQ (to Dataset)?
        Posted  
        
            by rivera.reyrivera
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by rivera.reyrivera
        
        
        
        Published on 2009-02-15T02:24:27Z
        Indexed on 
            2010/04/17
            8:03 UTC
        
        
        Read the original article
        Hit count: 426
        
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?
© Stack Overflow or respective owner