Beginner |
 |
Joined: Thu Aug 19, 2004 2:33 pm Posts: 30 Location: CA, USA
|
Hibernate version: 3
Hi, I've gone through the docs and I'm wondering if there's a way to build a LIKE clause in Hibernate that references a column on the RHS. The Criteria API seems to expect a string value such as "F%". For example I want query that has something like:
select *
from Foo f, Bar b
where f.name LIKE b.name || '%';
Is there a way to generate this LIKE clause using Hibernate's Criteria or HQL interfaces?
Thanks,
Don
|
|