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

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

Syntax

Visual Basic (Declaration)
Public Overrides ReadOnly Property TableClosureCollection As ICollection
C#
public override ICollection TableClosureCollection { get; }
Visual C++
public:
virtual property ICollection^ TableClosureCollection {
	ICollection^ get () override;
}
JavaScript
function get_tableClosureCollection();

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