0
與this answer on how to check for the (non)existance of related entities using Doctrine's is empty
query相關的,我嘗試在Doctrine Expression中使用它,但是Expr
Class沒有使用is empty
的文檔方法。 isNull
不起作用。所以我正在尋找的表達式如下:如何在表達式中使用Doctrine的「爲空」?
// filter for e with no relatedEntities
$qb->expr()->isEmpty('e.realatedEntities');
// filter for e with relatedEntities
$qb->expr()->isNotEmpty('e.realatedEntities');
對此有何想法?
主義的SIZE
也沒有相應的Expr
類。我錯過了什麼嗎?現在,我操縱查詢對象而不是返回表達式(在Symfony的Lexik表單過濾器中),但這只是一種解決方法。