I am new to cakephp and I'm trying to accomplish something that should be relatively easy. I have 2 models projects & categories bind by HABTM relationship.
Ben aşağıdaki sorgu gerçekleştirmek için çalışıyorum -> bir kategoriye ait tüm projeler bulmak
$projects = $this->Project->find('all', array('conditions' => array('Category.slug' => $category)));
Ben bunu yapıyorum Ancak bir SQL hatası oluşturur:
SQL Error: 1054: Unknown column 'Category.slug' in 'where clause'
Ben yanlış ne yapıyorum?