Update a datatable column with a specific value using linq

Hello @muhamed_fasil ,

Use the below LinQ expression :

(From R1 In TestDt.AsEnumerable
Select R = NewDt.Rows.Add(R1.ItemArray.Append(“Test”).ToArray)).CopyToDataTable()

image

Regards,
Rohith