Answers for "linq sum column"

1

linq sum group by

var result = source
    .GroupBy(x => x.Currency)
    .Select(g => new {
        Currency = g.Key,
        Total = g.Sum(x => x.FeesCustom > 0 ? x.FeesCustom : x.FeesNormal)
    });
Posted by: Guest on March-12-2020
0

linq sum

int[] numbers = new int[] { 10, 30, 50, 40, 60, 20, 70, 90, 80, 100 };
int total = (from num in numbers select num).Sum();
Posted by: Guest on July-11-2021

Browse Popular Code Answers by Language