- 追加された行はこの色です。
- 削除された行はこの色です。
- dotNet/Dapper/トランザクション へ行く。
- dotNet/Dapper/トランザクション の差分を削除
* トランザクション [#a47eb55c] ** トランザクション [#q54689d8] try { using (var tran = con.BeginTransaction()) { try { con.Execute("insert into t1 values (1, 'ABC');"); tran.Commit(); } catch catch (Exception e) { tran.Rollback(); } } } finally { con.Execute("drop table t1"); } ** 参考 [#ba571a1e] - http://msdn.microsoft.com/ja-jp/library/86773566(v=vs.110).aspx - https://github.com/SamSaffron/dapper-dot-net/blob/master/Tests/Tests.cs