Skip to main content
A newer version of this page is available. .

SameTableNameException Class

An exception that is thrown when two persistent classes are mapped to the same table.

Namespace: DevExpress.Xpo.Exceptions

Assembly: DevExpress.Xpo.v19.2.dll

Declaration

public class SameTableNameException :
    Exception

Remarks

A persistent class can be mapped to a specific table in a data store via the PersistentAttribute attribute. This exception is thrown if two classes exist that are mapped to the same table.

Solution:

- map different classes to different tables.

A persistent class, that is a descendant of another persistent class, can be mapped to the table to which its ancestor is mapped using the MapInheritanceAttribute attribute.

Inheritance

Object
Exception
SameTableNameException
See Also