Data :
Empcode Amount
30034 27.25
30034 124
linq code
Dim ComputedData = From p In AllOrders _
Order By p.Field(Of String)("EmpCode") _
Group By Key = p.Field(Of String)("EmpCode") Into Group _
Select EmpCode = Key, _
Consumption = Group.Sum(Function(p) p("Amount"))
Output
Empcode Amount
30034 151
The issue is that I must receive 151**.25** but the output is just 151.
How to avoid this rounding of?