i have an datatable like this.
i have got the data from sqlserver and stored in a datatable in c#
User Svc VSS
kiran 6.5 8
kiran 0.5 8
manu 0.0 4.0
manu 0.0 4.0
Priya 9.0 0.7
Priya 9.0 0.7
Peter 4.5 1.5
Peter .0 .5
now i need result like this in another datatable
User Svc VSS
kiran 7.0 16.0
manu 0.0 8.0
Priya 18.0 1.4
Peter 4.5 6.5
how can i achive this result set,
any help would be grealty apprecaited
thanks
prince
If you use TypeDataSet and the table name=tableName then by using linq you can do it easily as following..
I have test it by creating table and project. i think this will be helpful for you.
thanks