I have a many-to-many relation between the models Image and Units using a images_units join table.
How can I translate this query to a cakePHP find()?
SELECT * FROM Image, Units, images_units WHERE images_units.unit_id = 29;
Right now I'm trying find() on Image->find('all', $params); with no luck.