In a data table column ,lets say column 3 contains the value true and false,
Provide a LINQ query to update the values in column 3 from true to false.
required output
dt_Table
[Column1,Column2,column3
abc,1,false
efg,2,false
hijk,3,false
grwgwer,4,false
awfetg,5,false
fwegre,6,false
Here dt is the input datatable …1 is the column index…(Index starts from 0) …you can as well use column name instead of column index
Expression is used to set the value to whole of the column… As you wanted false to be set we are giving False between single quotes and the value should be a string so using double quotes around it