so I can search for specific values by doing
$recordset= Model::find('all', array( 'conditions' => array( 'condition' => $somevalue ) ))
however, what should I do if I want to combine a partial value?
right now, I resorted to writing the query myself, a la:
$abc = Connections::get('default')-> read('SELECT * FROM myTable WHERE condition LIKE "%partial string%"');
source share