Enlist the IDbCommand in the current Transaction.

Namespace:  NHibernate
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Sub Enlist ( _
	command As IDbCommand _
)
C#
void Enlist(
	IDbCommand command
)
Visual C++
void Enlist(
	IDbCommand^ command
)
JavaScript
function enlist(command);

Parameters

command
Type: System.Data..::.IDbCommand
The IDbCommand to enlist.

Remarks

It is okay for this to be a no op implementation.

See Also