I need the DetachedCriteria equivalent to the following HQL:
select obj
from Objects obj, Text text
where obj.TextId = text.TextId and <Some_Other_Condition>
order by text.Value
Thanx
I need the DetachedCriteria equivalent to the following HQL:
select obj
from Objects obj, Text text
where obj.TextId = text.TextId and <Some_Other_Condition>
order by text.Value
Thanx
It's all depending of your Mapped objects
Here is an example:
Hope it helps