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

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

See Also