Have looked for an answer here, but couldn’t find one.
When you call:
myTableAdapter.Update(myDataTable);
.NET will process the rows one at a time and perform insert, update, or delete commands, which ever is appropriate for the row.
Does this happen in a multi-threaded fashion? My guess is no, and if not, I will have to look into ways I can do this.
Thanks!
I think that I can say with certainty that it is NOT multi-threaded. Not only is there no mention of such in the doc, but it could introduce unreliable behavior, since rows would not be updated in the order in which they appear in the datatable.