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.
如何在 zend 框架 2 和 Doctrine 2 中使用 sql 连接?
我想加入学生表中的列 std_id 和用户表中的用户 ID。
您可以在 Doctrine 文档中找到它:
Doctrine2:一对一的单向映射
我假设在 ZF2/Doctrine2 中,您必须在 Doctrine 注释之前放置“ORM\”:
/** * @ORM\OneToOne(targetEntity="Shipping") * @ORM\JoinColumn(name="shipping_id", referencedColumnName="id") */
(编辑:添加注释的 zf2 变体)