Symfony2 Form Builder Select Across Join Table with Metadata
问题 I have 3 entities: [Member] ----OneToMany----> [MemberCategory] ---ManyToOne---> [Category] This works well as far as fetching results from the database, but I can't get the Form Builder to build a correct form controls. I want a list of all categories with checkboxes that are checked for those categories that are used by the member. Eventually I want to add the priority field. Member class Member { protected $id; @ORM\OneToMany(targetEntity="MemberCategory", mappedBy="member") protected