Skip to content

Instantly share code, notes, and snippets.

@Cruel
Created August 31, 2013 16:33
Show Gist options
  • Save Cruel/6399293 to your computer and use it in GitHub Desktop.
Save Cruel/6399293 to your computer and use it in GitHub Desktop.
Find song by name name and artist name
$song = $this->Artist->Song->find('first', array(
'conditions' => array('Song.name'=>'Emotion'),
'contain' => array(
'Artist'=> array(
'conditions'=>array(
'Artist.name'=>'Daft Punk'
)
)
),
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment