I want to update a column of a table which got ~4k rows. The column has to get the date of the parent so I'm using a simple foreach:
Parent.VariableDate = DateTime.Now;
foreach (var item in Parent.ChildList)
{
item.vari = Parent.VariableDate ;
}
Problem:
This action is taking ages. Can I immediately update a whole column?
I'm not sure you'll gain very much from writing this any other way. A better option, if possible in your situation(?), might be to avoid using
VariableDateat all in each item inChildList, and just refer toParentinstead whenever you need it. That way, you would not have to iterate through the 4K rows at all.As presented in your question, each
item.VariableDateseems to be superfluous..