world wide web development problems asp net php html xhtml css javascript jquery w3dproblems
db.Entry(bd).State = EntityState.Modified;
foreach (var item in bd) { db.Entry(item).State = EntityState.Modified; }
how to update the whole list instead of updating the one by one item in the loop which is taking a lot of time to complete if the bd list is long such as 1 million.
how to update the whole list instead of updating the one by one item in the loop which is taking a lot of time to complete if the bd list is long such as 1 million.
ReplyDelete