When implemented by a class, 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 MustOverride ReadOnly Property TableClosureCollection As ICollection
C#
public abstract ICollection TableClosureCollection { get; }
Visual C++
public:
virtual property ICollection^ TableClosureCollection {
	ICollection^ get () abstract;
}
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