Gets an ICollection of Property objects that this mapped class contains.

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

Syntax

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

Field Value

An ICollection of Property objects that this mapped class contains.

Remarks

This is all of the properties of this mapped class and each mapped class that it is inheriting from.

See Also