Symfony2 现有 ERD 模式的多对多
对于现有的实体关系图,假设我们有作者和书籍实体。
- 作者可以出版多本书;
- 一本书可以有多个作者。
数据库已经存在。由于连接表(asso_book_author)已经在这里,如何使用 Symfony 和 Symfony 来管理它?教义?
非常感谢。
For an existing Entity-Relationship diagram, let's say we have Author and Book entities.
- Author can have published several Book;
- A Book can have several Author.
The database already exists. As the joining table (asso_book_author) is already here, how to manage it with Symfony & Doctrine ?
Thanks a lot by advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否正在使用学说实体的注释?希望如此...;-)
这是《教义注释参考手册》中的一个示例:
http://www.doctrine -project.org/docs/orm/2.0/en/reference/annotations-reference.html#annref-manytomany
和
Are you using Annotations for Doctrine Entities? Hope so... ;-)
Here is an example from the Doctrine Annotations Reference Manual:
http://www.doctrine-project.org/docs/orm/2.0/en/reference/annotations-reference.html#annref-manytomany
and