如何使用 Criteria API 在 NHibernate 中创建子查询 Projection、为其指定别名并按别名排序
forum.hibernate.org/viewtopic.php?p=2378849
其中一张海报给出了这个答案:
您需要创建一个投影 (...),为其指定一个别名,然后您可以按别名进行排序。 没有时间发布详细信息,但我很确定这会起作用。
有人可以提供一个简单的示例,使用 Criteria API 进行查询,该查询使用投影执行子查询,然后使用该子查询作为别名,然后按该别名进行排序?
干杯!
forum.hibernate.org/viewtopic.php?p=2378849
one of the posters gives this answer:
You need to create a Projection (...), give it an alias and you can then sort by the alias.
No time to post the details but I'm pretty sure that would work.
Could someone provide a simple example, using the Criteria API, of a query that uses a Projection to do a subquery, and then uses that subquery as an Alias, and then orders by that Alias?
cheers!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以根据需要添加更多 DetachedCriteria。
这是我的示例:
希望有帮助。
you can add more DetachedCriteria based on your needs.
Here is my sample :
Hope this help.
这是我的简单示例:
Here is my simple sample :