Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以向我解释一下 Doctrine 2 ORM 如何在 SQL 级别处理类表继承吗?
我似乎在文档中找不到任何关于在 SQL 查询方面使用什么策略来提取参差不齐的结果集的内容。
例如:
parent
child1
child2
当我尝试拉所有孩子时,Doctrine 会产生什么查询(查询?)?这甚至可能吗?更清楚一点,我期望的结果集将由所有 3 个表中的行组成,并实例化Child1和Child2类型的对象。
Child1
Child2
经过大量的挖掘,我找到了生成选择实体的sql的地方。具体结果sql取决于平台和条件。从那个地方开始,您可以进一步挖掘以找出您需要的具体内容。
基本坚持