Я использую Symfony 1.4 и Propel в качестве ORM. У меня есть форма, в которую нужно вставить какую-то другую форму. Другая форма - это отношение n: m, которое связывает клиента и некоторый объект. Я не могу выяснить, как встроить его, чтобы он отображал все объекты для клиента.
Учитывая следующую схему, я хочу встроить форму CustomerCountryGroup в форму Customer, чтобы отобразить список объектов CuountryGroup, связанных с пользователем.
Вот мой schema.yml:
Customer:
_attributes: { phpName: Customer }
id:
phpName: Id
type: INTEGER
size: '11'
primaryKey: true
autoIncrement: true
required: true
CustomerCountryGroup:
_attributes: { phpName: CustomerCountryGroup }
id:
phpName: Id
type: INTEGER
size: '10'
primaryKey: true
autoIncrement: true
required: true
customerId:
phpName: CustomerId
type: INTEGER
size: '10'
required: false
foreignTable: Customers
foreignReference: id
onDelete: CASCADE
onUpdate: RESTRICT
countryGroupId:
phpName: CountryGroupId
type: INTEGER
size: '10'
required: false
foreignTable: CountryGroups
foreignReference: id
onDelete: CASCADE
onUpdate: RESTRICT
CountryGroup:
_attributes: { phpName: CountryGroup }
id:
phpName: Id
type: INTEGER
size: '11'
primaryKey: true
autoIncrement: true
required: true
Знаете ли вы, где я могу найти учебник / решение этой проблемы?
Большое спасибо