MapInheritanceAttribute.MapType Property
In This Article
Gets a value which specifies the table that persistent properties and fields are saved to.
Namespace: DevExpress.Xpo
Assembly: DevExpress.Xpo.v24.2.dll
NuGet Package: DevExpress.Xpo
#Declaration
public MapInheritanceType MapType { get; }
#Property Value
Type | Description |
---|---|
Map |
A Map |
Available values:
Name | Description |
---|---|
Parent |
The persistent properties and the fields of a class are stored in the same table as the properties of its parent class. Note When storing descendant classes to the table of their parent class, make sure that properties of different data types are not mapped to the same column. |
Own |
Persistent properties and fields are stored in a separate table. |
See Also