Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp
3.1.2:
Postgres 8.1:
Hi,
I have an hql query like this:
Code:
... AND LOWER(:licenseNumber) in (select lower(lnumber.licencenumber) from LicenceNumber lnumber where lnumber in elements(vehicle.licenceNumbers)) ....
My Problem is, that I don't want that the :licenceNumber has to match exactly, so need something like "the LIKE expression for properties" to match the :licenceNumber against the items in the subquery result).
Is this possible?
Thank you.