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 に答える