I have a Home model that links to a Realtor model on Home.realtor_num = Realtor.num. I have an Office model linked to the Realtor model on Realtor.office_num = Office.num.

Suppose I want easy access to Office.name in the result set of a find on the Homes table. Is there an easy way to specify the above relationship, such that $home['Office']['name'] will contain the data I'm looking for?

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

If you have correctly setup associations in you models:

  1. you can use containable behavior,
  2. you can access Office model from HomeController: $this->Home->Realtor->Office->find(...)
link|improve this answer
Thanks, sounds simple when put that way. I'll give it a try! – thesunneversets Nov 17 '10 at 22:21
feedback

If you have followed the naming conventions and the associations between the models are set up correctly you can just fetch the data one level deeper.

$data = $this->Home->find( 'first', array( 'recursive' => 2 ) );

and the name should be in $data['Home']['Realtor']['Office']['name'].

(although depending on the associations it might not look exactly like that. You can debug( $data ) to see the structure.)

link|improve this answer
Hmm, I'm worried that increasing recursive to 2 will slow things down unmanageably... but I'm sure you're right in theory! – thesunneversets Nov 17 '10 at 22:20
You can use the containable behavior, like bancer suggested. Then you can fetch just the data that you want and discard the rest, so you'll end up with a simple & fast query. – Juhana Nov 18 '10 at 10:02
Containable still does huge stacked queries and merges results. Better to learn to use the joins key in your find options, or go with something like the Linkable behavior, or OneQuery – Abba Bryant Nov 18 '10 at 16:11
recursive 2 is never a good idea, containable does many queries but that does not mean its very slow. there are also some behaviors like linkable and onequery to help with joins – dogmatic69 Nov 21 '10 at 23:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.