The base class for an IType that maps collections to the database.

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

Syntax

Visual Basic (Declaration)
<SerializableAttribute> _
Public MustInherit Class CollectionType _
	Inherits AbstractType _
	Implements IAssociationType, IType, ICacheAssembler
C#
[SerializableAttribute]
public abstract class CollectionType : AbstractType, 
	IAssociationType, IType, ICacheAssembler
Visual C++
[SerializableAttribute]
public ref class CollectionType abstract : public AbstractType, 
	IAssociationType, IType, ICacheAssembler
JavaScript
NHibernate.Type.CollectionType = function();

Type.createClass(
	'NHibernate.Type.CollectionType',
	NHibernate.Type.AbstractType,
	NHibernate.Type.IAssociationType,
	NHibernate.Type.IType,
	NHibernate.Type.ICacheAssembler);

Inheritance Hierarchy

See Also