문제

Under Symfony2, how to manage a Many-to-many association with additional fields in the joining table ?

For instance, I want to know which person uses a horse, and when. User and Horse have a many-to-many association and we store the date when this user rides that horse.

도움이 되었습니까?

해결책

If the join table is more than just a join table, and in fact contains additional columns, than you don't have a ManyToMany anymore, but two OneToMany associations :

  • a person has many rides
  • a horse has many rides
  • a ride has one person
  • a ride has one horse
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top