任何人都知道我如何在 cakephp 中使用 OR 子句对数据库 MongoDB 进行查询?
我在用着:
$produtos = $this->Anuncio->find('all',
array('conditions' =>
array('OR' => array(
'nomeProduto'=> array('$regex' => (string)$pesq),
'categoria'=> array('$regex' => (string)$pesq))
),
));
但不工作。