I have a condition part of my query as follows:
...
where foo.bar like '%:%'
The query would execute but with no result. I think it's because of the colon since it is a reserved char in HQL. So how can I escape it without sending the :
as a parameter to my query?
I have already used '%\:%'
and '%\\\\:%'
with no success.