Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 721 Bytes

IUnitOfWork.md

File metadata and controls

20 lines (14 loc) · 721 Bytes

IUnitOfWork interface

namespace: Serenity.Data   assemblySerenity.Net.Data

An interface to implement unit of work pattern, e.g. a transaction.

public interface IUnitOfWork

Members

name description
Connection { get; } Gets the connection.
event OnCommit Occurs when transaction is committed.
event OnRollback Occurs when transaction is rolled back.

See Also