Hi
Im having some trouble with a model association - yes, I have tried the manual!
For each Booking I have, I can have many Bookingnights
Booking
Booking.id
....
Bookingnight
Bookingnight.id
Bookingnight.booking_id
In my Booking model, I am able to get all the associated Bookingnights without issue.
var $hasMany = array(
'Bookingdate' => array(
'className' => 'Bookingdates',
'foreignKey' => 'booking_id',
)
);
My problem is when I try and go back the other way. I have my Bookingnight.id, and want to get the associated booking.
I would think that it should be belongsTo?
var $belongsTo = array(
'Booking' => array(
'className' => 'Bookings',
'foreignKey' => 'booking_id'
)
);
==> Doesnt Work
Is there something obvious that I'm missing?
Thanks!
--
Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org
Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions.
To unsubscribe from this group, send email to
cake-php+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php
Tuesday, June 26, 2012
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment