需要 DetachedCriteria 等效项
我需要相当于以下 HQL 的 DetachedCriteria:
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这完全取决于您的映射对象
这是一个示例:
希望有帮助
It's all depending of your Mapped objects
Here is an example:
Hope it helps