A UnitOfWorkScopeBase<(Of <(TUnitOfWork>)>) appropriate for web applications. Creates a single unit of work instance per TUnitOfWork per web request.

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

Syntax

C#
public sealed class PerRequestUnitOfWorkScope<TUnitOfWork> : UnitOfWorkScopeBase<TUnitOfWork> where TUnitOfWork : class, new(), IUnitOfWork
Visual Basic (Declaration)
Public NotInheritable Class PerRequestUnitOfWorkScope(Of TUnitOfWork As {Class, New, IUnitOfWork}) _
	Inherits UnitOfWorkScopeBase(Of TUnitOfWork)

Type Parameters

TUnitOfWork
The concrete IUnitOfWork type.

Inheritance Hierarchy

System..::.Object
  Mindscape.LightSpeed..::.UnitOfWorkScopeBase<(Of <(TUnitOfWork>)>)
    Mindscape.LightSpeed..::.PerRequestUnitOfWorkScope<(Of <(TUnitOfWork>)>)

See Also