LLBLGEN 3.0 REL 3RD DEC .NET FRAMEWORK 2.0 WINDOWS APPLICATION ORACLE 9I/10G
Hello
Is there a way to use IsolationLevel.ReadCommitted along with unitofwork2 ? If yes how do i do it ?
UnitOfWork2 uow = new UnitOfWork2(); // ... DataAccessAdapter adapter = new DataAccessAdapter(); adapter.StartTransaction(IsolationLevel.ReadCommitted, "TestTrx"); try { uow.Commit(adapter); } catch (Exception) { // manage error }
daelmo wrote: UnitOfWork2 uow = new UnitOfWork2(); // ... DataAccessAdapter adapter = new DataAccessAdapter(); adapter.StartTransaction(IsolationLevel.ReadCommitted, "TestTrx"); try { uow.Commit(adapter); } catch (Exception) { // manage error }
daelmo wrote:
Thanks daelmo. I got it right