[Symfony 1.4 Doctrine]
Mam taki problem. Mam 2 tabele które chce podwójnie połączyć. Schemat wygląda mniej wiecej tak:
Table1: columns: table1_id: { type: integer, notnull: true, primary: true, autoincrement: true } ... Tabel2: columns: tabel2_id: { type: integer, notnull: true, primary: true, autoincrement: true } table1_1_id: { type: integer, notnull: true} table1_2_id: { type: integer, notnull: true} relations: Table1: local: table1_1_id foreign: table1_id foreignAlias: Table11 Table1: local: table1_2_id foreign: table1_id foreignAlias: Table12
jednak jedyne połączenie jakie doctrine tworzy to to pierwsze, to drugie w ogóle nie jest tworzone przez co nie da się dotrzeć do tego obiektu.
Bardzo bym prosił o pomoc.