Gets an IEnumerable of all of the Table objects that the subclass finds its information in.

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

Syntax

C#
public virtual IEnumerable<Table> SubclassTableClosureIterator { get; }
Visual Basic
Public Overridable ReadOnly Property SubclassTableClosureIterator As IEnumerable(Of Table)
	Get
Visual C++
public:
virtual property IEnumerable<Table^>^ SubclassTableClosureIterator {
	IEnumerable<Table^>^ get ();
}

Field Value

An IEnumerable of Table objects.

Remarks

It adds the TableClosureIterator and the subclassTables into the IEnumerable.

See Also