If I want to find an entity where the column is not equal to such value, how would I do it?
PHP Code:
$entity = $this->getEntityManager()->getRepository('EntityName')->where(array(
'columnName!=' => $value
))->find();
or
$entity = $this->getEntityManager()->getRepository('EntityName')->where(array(
'columnName<>' => $value
))->find();
or something else
Comment