Defines a mapping from a .NET Type to a SQL datatype. This interface is intended to be implemented by applications that need custom types.

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

Syntax

Visual Basic (Declaration)
Public Interface IType _
	Implements ICacheAssembler
C#
public interface IType : ICacheAssembler
Visual C++
public interface class IType : ICacheAssembler
JavaScript
NHibernate.Type.IType = function();
NHibernate.Type.IType.createInterface('NHibernate.Type.IType');

Remarks

Implementors should usually be immutable and MUST definately be threadsafe.

See Also