An IType that may be used for a discriminator column.

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

Syntax

C#
public interface IDiscriminatorType : IIdentifierType, 
	IType, ICacheAssembler, ILiteralType
Visual Basic
Public Interface IDiscriminatorType _
	Inherits IIdentifierType, IType, ICacheAssembler, ILiteralType
Visual C++
public interface class IDiscriminatorType : IIdentifierType, 
	IType, ICacheAssembler, ILiteralType

Remarks

This interface contains no new methods but does require that an IType that will be used in a discriminator column must implement both the IIdentifierType and ILiteralType interfaces.

See Also