質問

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 VariableDate at all in each item in ChildList, and just refer to Parent instead 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.VariableDate seems to be superfluous..

他のヒント

you can use Linq for that

Parent.ChildList.foreach(p=>p.vari = DateTime.Now);

it is the fastest way

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top