Top "Class-table-inheritance" questions

Class Table Inheritance is one of several techniques for designing SQL tables in situations where subclasses that extend classes would apply if SQL had a mechanism for inheritance, which it doesn't.

Can a single table inheritance entity extend a class table inheritance entity?

This is my base/parent entity, setup so its children are using their own tables. /** * @ORM\Entity * @ORM\Table(name="…

symfony doctrine-orm symfony-2.3 single-table-inheritance class-table-inheritance
Avoid Circular Dependency

I am developing a travel management application. The design in question is something like following : Each person in a tour …

database-design hibernate-mapping circular-dependency erd class-table-inheritance