NPersistence Reference Guide
Assembly: NPersistence (in NPersistence.dll) Version: 2.0.0.0 (2.0.0.0)
Defines inheritance strategy options.
Namespace: NPersistenceAssembly: NPersistence (in NPersistence.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax
C# |
public enum InheritanceType
Members
Member | Value | Description |
---|---|---|
SINGLE_TABLE | 0 | A single table per class hierarchy.
|
TABLE_PER_CLASS | 1 | A table per concrete entity class.
|
JOINED | 2 |
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.
|