Why phalcon orm does not support find prototype like this?
Model::find(
array(
'filed' => 'value',
'field2' => 'value2'
)
);
Doctrine ORM supports this and I can make a range quey like this
Model::find(
'id' => array(1, 2, 3)
);
But in Phalcon ORM I must write like this
Model::find(array(
'id in (1, 2, 3)'
))