Determine whether the entity is inherited one or more other entities. In other words, is this entity a subclass of other entities.

Namespace: NHibernate.Persister.Entity
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
bool IsInherited { get; }
Visual Basic
ReadOnly Property IsInherited As Boolean
	Get
Visual C++
property bool IsInherited {
	bool get ();
}

Return Value

True if other entities extend this entity; false otherwise.

See Also