Configures the TableHiLoGenerator by reading the value of table, column, max_lo, and schema from the parms parameter.

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

Syntax

Visual Basic (Declaration)
Public Overrides Sub Configure ( _
	type As IType, _
	parms As IDictionary, _
	dialect As Dialect _
)
C#
public override void Configure(
	IType type,
	IDictionary parms,
	Dialect dialect
)
Visual C++
public:
virtual void Configure(
	IType^ type, 
	IDictionary^ parms, 
	Dialect^ dialect
) override
JavaScript
function configure(type, parms, dialect);

Parameters

type
Type: NHibernate.Type..::.IType
The IType the identifier should be.
parms
Type: System.Collections..::.IDictionary
An IDictionary of Param values that are keyed by parameter name.
dialect
Type: NHibernate.Dialect..::.Dialect
The Dialect to help with Configuration.

Implements

IConfigurable..::.Configure(IType, IDictionary, Dialect)

See Also