NPersistence Reference Guide
Defines inheritance strategy options.

Namespace: NPersistence
Assembly: NPersistence (in NPersistence.dll) Version: 2.0.0.0 (2.0.0.0)

Syntax

   
 C# 
public enum InheritanceType

Members

MemberValueDescription
SINGLE_TABLE0
A single table per class hierarchy.
TABLE_PER_CLASS1
A table per concrete entity class.
JOINED2
A strategy in which fields that are specific to a subclass are mapped to a separate table than the fields that are common to the parent class, and a join is performed to instantiate the subclass.

See Also