2
私は教義とYAMLと少し問題があります。ここではDoctrineの複数の1対多の関係を
は私のモデルである:どういうわけか
Keyword:
columns:
word: { type: string, notnull: true }
is_stopword: { type: boolean, default: 0 }
has_parents: { type: boolean, default: 0 }
Relation:
columns:
child: { type: integer, notnull: true }
parent: { type: integer, notnull: true }
relations:
Keyword: { onDelete: CASCADE, local: [child, parent], foreign: id }
、私はバインドに教義を取得することはできません両方の関係は、最初の1つだけ(子供)が "キーワード"に接続されます...子供は多くの親と多くの子どもを親として持つことができるので、これを解決するために私が見る唯一の方法です...