如何在学说中使用 NestedSet 行为来实现这一点?
Task:
columns:
name: string(100)
parent_id: integer
relations:
Parent:
class: Task
local: parent_id
foreign: id
foreignAlias: Subtasks
Task:
columns:
name: string(100)
parent_id: integer
relations:
Parent:
class: Task
local: parent_id
foreign: id
foreignAlias: Subtasks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅http://www.doctrine-project.org/documentation /manual/1_1/hu/hierarchical-data
你不需要关心父 ID 或任何东西,原则会为你记账。
See http://www.doctrine-project.org/documentation/manual/1_1/hu/hierarchical-data
You don't need to care about an parent id or anything, doctrine does the bookkeeping for you.