Create an instance of IBatcher according to the configuration and the capabilities of the driver

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

Syntax

Visual Basic (Declaration)
Public Overridable Function CreateBatcher ( _
	connectionManager As ConnectionManager _
) As IBatcher
C#
public virtual IBatcher CreateBatcher(
	ConnectionManager connectionManager
)
Visual C++
public:
virtual IBatcher^ CreateBatcher(
	ConnectionManager^ connectionManager
)
JavaScript
function createBatcher(connectionManager);

Parameters

connectionManager
Type: NHibernate.Impl..::.ConnectionManager

Implements

IDriver..::.CreateBatcher(ConnectionManager)

Remarks

By default, .Net doesn't have any batching capabilities, drivers that does have batching support need to override this method and return their own batcher.

See Also