My datatable looks like
Id|Name|Status
1 |a |1
2 |b |1
3 |c |1
4 |d |1
and dictionary have key value pair like
key Value
2 y
4 Y
dictionary will contain only those keys whose status need to be updated
and the updated datatable that i need is something like below,
Id|Name|Status
1 |a |1
2 |b |0
3 |c |1
4 |d |0
So is this achievable in c# using linq.