" ", TransactionScope , procs. "", , , , " ". , nonferferred proc, .
using (var transaction = new TransactionScope())
{
var db = new dbDataContext();
db.StoredProc();
transaction.Complete();
}
...
using (var transaction = new TransactionScope())
{
var db = new dbDataContext();
db.StoredProc().ToList();
transaction.Complete();
}
ToList() , LINQ .
, , () LINQs , . - , .