如何在 NHibernate 中获取此类查询: SELECT DISTINCT FileName From CustomerFile WHERE name = ' ' AND 时间范围 = ''
请不要将我重定向到 Stackoverflow 中其他类似的 HQL,因为它们对我不起作用。我真的很感谢你对此的指导。谢谢。
使用 ICriteria API 在 Nhibernate 中重现此类查询:
SELECT DISTINCT FileName From CustomerFile WHERE name = ' ' AND timeframe = ''
Please do not redirect me towards the other similar kinds of HQL in Stackoverflow, because they did not work for me. I really appreciate your direction on it. Thanks.
Reproducing this kind of query in Nhibernate with ICriteria API :
SELECT DISTINCT FileName From CustomerFile WHERE name = ' ' AND timeframe = ''
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不直接使用上面概述的自定义 SQL,并将结果列映射到字符串呢?为什么要跳过 ORM 的圈子去做一些简单的事情呢?
Why not just use the custom SQL that you've sketched in, above, and map the result column to Strings? Why jump through ORM hoops to do something simple?