The base constructor for Dialect.

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

Syntax

Visual Basic (Declaration)
Protected Sub New
C#
protected Dialect()
Visual C++
protected:
Dialect()
JavaScript
NHibernate.Dialect.Dialect = function();

Remarks

Every subclass should override this and call Register() with every DbType except Object, SByte, UInt16, UInt32, UInt64, VarNumeric.

The Default properties for this Dialect should also be set - such as whether or not to use outer-joins and what the batch size should be.

See Also