Defines the contract for a Unit of Work. A Unit of Work maintains a list of objects affected by a business transaction and coordinates the writing out of changes and the resolution of concurrency problems.

Namespace:  Mindscape.LightSpeed
Assembly:  Mindscape.LightSpeed (in Mindscape.LightSpeed.dll)
Version: 4.0.0.0 (4.0.0.0)

Syntax

C#
public interface IUnitOfWork : IEnumerable<Entity>, 
	IEnumerable, IDisposable
Visual Basic (Declaration)
Public Interface IUnitOfWork _
	Implements IEnumerable(Of Entity), IEnumerable,  _
	IDisposable

See Also