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

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

Syntax

C#
public virtual void Configure(
	IType type,
	IDictionary<string, string> parms,
	Dialect dialect
)
Visual Basic
Public Overridable Sub Configure ( _
	type As IType, _
	parms As IDictionary(Of String, String), _
	dialect As Dialect _
)
Visual C++
public:
virtual void Configure(
	IType^ type, 
	IDictionary<String^, String^>^ parms, 
	Dialect^ dialect
)

Parameters

type
Type: NHibernate.Type..::..IType
The IType the identifier should be.
parms
Type: System.Collections.Generic..::..IDictionary<(Of <(<'String, String>)>)>
An IDictionary of Param values that are keyed by parameter name.
dialect
Type: NHibernate.Dialect..::..Dialect
The NHibernate.Dialect to help with Configuration.

Implements

IConfigurable..::..Configure(IType, IDictionary<(Of <<'(String, String>)>>), Dialect)

See Also