When implemented by a class, gets or sets if the mapped class has subclasses or is
a subclass.
Namespace:
NHibernate.Mapping
Assembly:
NHibernate (in NHibernate.dll)
Syntax
Visual Basic (Declaration) |
---|
Public MustOverride Property IsPolymorphic As Boolean |
C# |
---|
public abstract bool IsPolymorphic { get; set; } |
Visual C++ |
---|
public:
virtual property bool IsPolymorphic {
bool get () abstract;
void set (bool value) abstract;
} |
JavaScript |
---|
function get_isPolymorphic();
function set_isPolymorphic(value); |
Field Value
trueTruetruetrue (True in Visual Basic) if the mapped class has subclasses or is a subclass.
See Also