I am having a table structure with columns
FeesNormal
FeesCustom
Currency
Now i am looking for a SUM function group by currency .
For example 20 USD + 30 EURO + 40 INR something like this from this table
I also have to consider the scenario if FeesCustom > 0 I have to ignore FeesNormal for the row
Sample date and expected result is like this
FeesNormal FeesCustom Currency 10 0 USD 15 25 USD //in this case can ignore FeesNormal Since FeesCustom is more 5 10 EUR //same for this row ignore FeesNormal 10 0 EUR Expected result 35 USD 20 EUR I able to find sum using the linq
int sum_custom=(int)fee_list.Where(p => p.FeesCustom > 0).Sum(p => p.FeesCustom); int sum_normal = (int)fee_list.Where(p => p.FeesCustom ==0).Sum(p => p.FeesNormal);
FeesCustom > 0orFeesCustom != 0?p.FeesCustom <= 0, right? To be the opposite of the condition of> 0.