Gets or sets if the mapped class is a subclass.

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

Syntax

C#
public override bool IsPolymorphic { get; set; }
Visual Basic
Public Overrides Property IsPolymorphic As Boolean
	Get
	Set
Visual C++
public:
virtual property bool IsPolymorphic {
	bool get () override;
	void set (bool value) override;
}

Field Value

trueTruetruetrue (True in Visual Basic) since this mapped class is a subclass.

Remarks

The setter should not be used to set the value to anything but trueTruetruetrue (True in Visual Basic).

See Also