Monday, January 4, 2010

Re: Selecting records that have hasmany child records.

Ok, I tried again at a bit of self rescue, and after a bit of reading
thought contain might be able to help.

$venues_contained = $this->Venue->find('all', array('contain'=>array
('Offer' => array(
'conditions' => array("Offer.date_end > $time")
))));

That of course dosn't help at all. It dosn't seem to add any sql to
the query limiting by date_end and I think even if it was working (i
must have the syntax wrong there somewhere) i suspect it would just
limit the offers attached to each venue to ones that havn't expired.

Any hints?

On Jan 3, 11:31 am, "#2Will" <willjbar...@gmail.com> wrote:
> I'm using cake 1.2.
>
> I have a table of venues (Venue model) that hasmany offers (Offer
> model).
>
> var $hasMany = array(
>                 'Offer' => array(
>                         'className' => 'Offer',
>                         'foreignKey' => 'venue_id',
>
> ...etc
>
> How can i only select venues that have offers?   If that is possible,
> can i select only venues that have current offers?
>
> Thanks for any guidence.
>
> Will

Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions.

You received this message because you are subscribed to the Google Groups "CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
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?hl=en

No comments: