Update a datatable column with a specific value using linq

Hi @muhamed_fasil

How about this expression ?

dt.AsEnumerable.Where(Function(r) r("Price").ToString ="").ToList.ForEach(
Sub(r) 
     r("Price")=r("10").ToString
End Sub
)

Regards
Gokul