Is there any way to do something like that:
Robots::find(array(
'type IN (:type:)',
'bind' => array('type' => array(1, 2, 3))
));
in this case it fails as frong param count, but in
Robots::find(array(
'type IN (:type:)',
'bind' => array('type' => implode(', ', array(1, 2, 3)))
));
it return bad results, any ideas how to do this correctly?