私は、次のDB関係があります形状で、今ネストされたリンクされたデータを取得し、CakePHPの(2.1.0)
Building hasMany Shape
Appartment hasOne Shape
Building hasMany Appartment
Shape belongsTo Building & Appartment
をモデル私は特定の建物に属するすべての図形を取得したいと思います。これには、この特定の建物に属するアパートに属する図形が含まれます。
など。
Building 'X'
There are 4 shapes directly linked to building X via the belongsTo Building relation.
Shape->Building
And there are 2 shapes directly linked to 2 appartments via the belongsTo Appartment relation. These 2 appartments again are directly linked to Building X via the belongsTo Building relation. Thus these 2 shapes are indirectly linked to building X.
Shape->Appartment->Building
私はこのまわりで私の頭を取得するように見えることはできませんが、ヘルプははるかに高く評価されます。
おかげですべての依存データを与えるが、確かに私が探しているようです。 – pbond
これに慣れていくには多少の読書や理解が必要かもしれませんが、関連性に基づいて特定のデータを検索するのはすばらしいことです。 – Dave