How do i update an entire column in a Datatable using LINQ operation?

HI @hacky

Checkout this expression

(From a In DT.AsEnumerable
Let b= a(0).ToString+" Demo"
Let c= a(1).ToString
Select Dt1.Rows.Add(b,c)).CopyToDataTable

Regards
Sudharsan