Gets or sets the PersistentClass that this mapped class is extending.

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

Syntax

Visual Basic (Declaration)
Public Overrides Property Superclass As PersistentClass
C#
public override PersistentClass Superclass { get; set; }
Visual C++
public:
virtual property PersistentClass^ Superclass {
	PersistentClass^ get () override;
	void set (PersistentClass^ value) override;
}
JavaScript
function get_superclass();
function set_superclass(value);

Field Value

The PersistentClass that this mapped class is extending.

See Also