xpo-devexpress-dot-xpo-dot-exceptions.md
An exception that is thrown when two persistent classes are mapped to the same table.
Namespace : DevExpress.Xpo.Exceptions
Assembly : DevExpress.Xpo.v25.2.dll
NuGet Package : DevExpress.Xpo
public class SameTableNameException :
Exception
Public Class SameTableNameException
Inherits Exception
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:
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.
Object Exception SameTableNameException
See Also