I fetch a list of rows (Id,field1,f2...) and do some computation and store the result in a IList. I want to now update all the values in this list to a table T. I am using entity framework and this needs to be a transaction.
Will it be fine if I open a transactionscope and update using a stored proc or is thr a efficient way to push multiple updates once ?