We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 532ee83 commit d465fadCopy full SHA for d465fad
src/NHibernate.Test/NHSpecificTest/DtcFailures/DtcFailuresFixture.cs
@@ -483,6 +483,18 @@ public void NH1744()
483
}
484
485
[Test]
486
+ public void CanUseSessionOutsideOfScopeAfterScope()
487
+ {
488
+ CanUseSessionOutsideOfScopeAfterScope(false);
489
+ }
490
+
491
+ [Test]
492
+ public void CanUseSessionOutsideOfScopeAfterScopeWithFlush()
493
494
+ CanUseSessionOutsideOfScopeAfterScope(true);
495
496
497
+ //[Test]
498
public void CanUseSessionOutsideOfScopeAfterScope([Values(false, true)] bool explicitFlush)
499
{
500
using (var s = sessions.WithOptions().ConnectionReleaseMode(ConnectionReleaseMode.OnClose).OpenSession())
0 commit comments