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