9

我找到了这篇关于如何使用 linq pad 插入、更新和删除的文章,但它没有提到任何关于回滚的内容。

是否可以在 linqpad 中回滚?

4

1 回答 1

13

是的。你可以做:

using (TransactionScope scope = new TransactionScope()) {
  // Put the operations that you want to protect in a transaction here.

  if (you_want_to_commit) {
    scope.Complete();
  }
  // Otherwise, it'll roll back when you exit the using block.
}
于 2012-06-23T05:32:40.797 回答