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

There is only one Table in the ICollection since this is the root class.

See Also