Transaction Processing Features

NObject O/R Mapping framework provides normal transaction processing function as follows:

om.BeginTransaction();

try

{

  // ...

  om.Commit();

}

catch

{

  om.Rollback();

}

At the same time, NObject O/R Mapping framework provides enhanced characteristics of transaction processing, such as nesting transaction processing, synchronizing transactions between database and data-object, managing state of data-object (such as Reset, Refresh etc.). Please read the following sample:

Related Topics

NObject Transaction Processing