Say I have the code below that uses LINQ to SQL:
MyDataContext dc = new MyDataContext;
var items = from f in dc.TableName
where f.ChildId == 4
select f;
If the table TableName has a column called Completed
is it possible for me to set the Completed
column to true
for everything selected above?