Try:

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

Dave

-----Original Message-----
From: cake-php@googlegroups.com [mailto:cake-...@googlegroups.com] On Behalf
Of #2Will
Sent: January-04-10 10:40 PM
To: CakePHP
Subject: 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+unsubscr...@googlegroups.com For more options, visit this group 
cake-php+at http://groups.google.com/group/cake-php?hl=en
No virus found in this incoming message.
Checked by AVG - www.avg.com
Version: 9.0.725 / Virus Database: 270.14.123/2595 - Release Date: 01/04/10
04:54:00

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+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en

Reply via email to