Hi all,
My question is here: StackOverflow.
Basically, this does not work:
$model = MyModel::findFirst([
'conditions' => 'field=?0',
'bind' => [
0 => null,
],
'bindTypes' => [
0 => Phalcon\Db\Column::BIND_PARAM_NULL,
]
]);
What am I doing wrong there?
Cheers!