Я надеюсь, что там есть несколько друзей-учителей.
Вот упрощенный YAML моих отношений:
Collection:
columns:
id: { type: integer(4), notnull: true, primary: true, autoincrement: true }
name: { type: string(255), notnull: true, unique: true }
relations:
Items:
class: Item
refClass: CollectionItem
foreignAlias: Collections
type: many
foreignType: many
Item:
columns:
id: { type: integer(4), notnull: true, primary: true, autoincrement: true }
name: { type: string(255), notnull: true }
CollectionItem:
columns:
id: { type: integer(4), notnull: true, primary: true, autoincrement: true }
collection_id: { type: integer(4) }
item_id: { type: integer(4) }
relations:
Collection:
foreignAlias: CollectionItem
foreignType: one
Item:
foreignAlias: CollectionItem
foreignType: one
Я хочу, чтобы коллекция могла содержать много копий одного и того же элемента, но когда я использую сгенерированные классы для загрузки элементов, вот так:
$collection = Doctrine::getTable('Collection')->find(1);
$items = $collection->Items;
$ элементы не содержат мои дубликаты. Кажется, что сгенерированный sql правильно возвращает повторяющиеся строки:
SELECT i.id AS i__id, i.name AS i__name, c.id AS c__id, c.collection_id AS c__collection_id, c.item_id AS c__item_id, FROM item i LEFT JOIN collection_item c ON i.id = c.item_id WHERE c.collection_id IN (?) - (1)
Я знаю, что вместо этого я могу обойтись без выполнения моих конкретных запросов dql, но кто-нибудь знает, есть ли где-нибудь простая настройка, позволяющая коллекции Items иметь дубликаты?