When implemented by a class, gets an IEnumerable 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 abstract IEnumerable<Table> TableClosureIterator { get; }
Visual Basic
Public MustOverride ReadOnly Property TableClosureIterator As IEnumerable(Of Table)
	Get
Visual C++
public:
virtual property IEnumerable<Table^>^ TableClosureIterator {
	IEnumerable<Table^>^ get () abstract;
}

Field Value

An IEnumerable 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