Reylin Mathew

Reylin Mathew

  • NA
  • 347
  • 70.9k

how to filter a datatable row with same value using linq

Jun 19 2019 12:13 AM
this is my data from db 
name     date             amnt                id
a        2070-06-11       1000                 23
b        2070-07-11        100               35
a         2070-06-11       1000               23
c         2070-08-11        100               46
d         2070-02-11         100              50
 
 how to filter a datatable row with same value using linq in c#
 
 
i want this model 
 
name     date             amnt              id
a           2070-06-11     1000,1000   23
b           2070-07-11     100             35
c           2070-08-11     100            46
d           2070-02-11     100            50
 
 plz help me.
thnkx in advn 
 
 
 

Answers (9)