Gets an ICollection of Table objects that this mapped class reads from and writes to.

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

Syntax

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

Field Value

An ICollection of Table objects that this mapped class reads from and writes to.

Remarks

This is all of the tables of this mapped class and each mapped class that it is inheriting from.

See Also