Hi,
what is the code for search "empty" aor "IS NULL" with ORM ?
Thanks in advance
what is the code for search "empty" aor "IS NULL" with ORM ?
PHP Code:
$accountList = $entityManager->getRepository('Account')->where([
'type' => ''
])->find();
Thanks in advance
Comment