Instantiate an action.

Namespace: NHibernate.Action
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
protected internal EntityAction(
	ISessionImplementor session,
	Object id,
	Object instance,
	IEntityPersister persister
)
Visual Basic
Protected Friend Sub New ( _
	session As ISessionImplementor, _
	id As Object, _
	instance As Object, _
	persister As IEntityPersister _
)
Visual C++
protected public:
EntityAction(
	ISessionImplementor^ session, 
	Object^ id, 
	Object^ instance, 
	IEntityPersister^ persister
)

Parameters

session
Type: NHibernate.Engine..::..ISessionImplementor
The session from which this action is coming.
id
Type: System..::..Object
The id of the entity
instance
Type: System..::..Object
The entity instance
persister
Type: NHibernate.Persister.Entity..::..IEntityPersister
The entity persister

See Also