调查它,我验证了例如值 o "myInt" 在以下场景中没有回滚
int myInt = 10;
using (TransactionScope scope = new TransactionScope(TransactionScopeOption.RequiresNew))
{
myInt=20;
Transaction t = Transaction.Current;
t.Rollback();
}
所以它让我想到“TransactionScope 是否只回滚与数据库相关的活动?还是事务可以管理其他事情而我不知道这些?”