Pergunta

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.

Foi útil?

Solução

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
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top