A SetType implemented using a collection that maintains the order in which elements are inserted into it.

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

Syntax

Visual Basic (Declaration)
<SerializableAttribute> _
Public Class OrderedSetType _
	Inherits SetType
C#
[SerializableAttribute]
public class OrderedSetType : SetType
Visual C++
[SerializableAttribute]
public ref class OrderedSetType : public SetType
JavaScript
NHibernate.Type.OrderedSetType = function();

Type.createClass(
	'NHibernate.Type.OrderedSetType',
	NHibernate.Type.SetType);

Inheritance Hierarchy

System..::.Object
  NHibernate.Type..::.AbstractType
    NHibernate.Type..::.CollectionType
      NHibernate.Type..::.SetType
        NHibernate.Type..::.OrderedSetType

See Also