Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
linq padを使用して挿入、更新、削除する方法についてこの記事を見つけましたが、ロールバックについては何も言及されていません。
linqpadでロールバックすることは可能ですか?
はい。できるよ:
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. }