2006-04-09から1日間の記事一覧

.NET2.0対応なトランザクション

何と、都合の良い事は、都合の良いようには進まないって事ですね。 少なくとも.NET2.0でトランザクション周りのInterceptorは、適切に動作する様です。 テストケースはサックリと通るんですけどねぇ・・・。 んで、まぁ、TransactionScopeを使った実装は、や…

TransactionScope

動作に納得がいかない事があります。 [Test] public void ScopeTest() { using (TransactionScope scope = new TransactionScope()) { Transaction around = Transaction.Current; using (TransactionScope scope2 = new TransactionScope(TransactionScopeO…