7thSENSE GmbH

Results 1 comments of 7thSENSE GmbH

Hi @chateaux , you could use [`lower()`](https://dev.mysql.com/doc/refman/5.7/en/string-functions.html#function_lower) and [`hex()`](https://dev.mysql.com/doc/refman/5.7/en/string-functions.html#function_hex) to convert the transaction.uuid into something searchable. ```php $qb->andWhere('LOWER(HEX(transactions.uuid)) LIKE :uuid')->setParameter('uuid', '%f68f66cd%'); ``` It is not a solution withing this library...