标签: postgresql symfony doctrine-orm
我使用Symfony框架。
将ILIKE添加到Doctrine很容易。
https://github.com/domudall/DoctrineExtensions/blob/master/lib/Dmno/DoctrineExtensions/Comparison/Postgresql/Ilike.php
但我想使用Expr类的Doctrine。 是否可以扩展Doctrine Expr类,以便我可以使用PostgreSQL" ILIKE"?
$andExpr->add($pivot->expr()->ilike($searchField, '?' . $i));