NHibernate QueryOver 与 FROM 中的嵌套选择
您将如何使用 QueryOver(或 CriteriaAPI)编写以下内容?
select foo from (select 1 as foo) as bar
How would you write the following using QueryOver (or CriteriaAPI for that matter)?
select foo from (select 1 as foo) as bar
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用:
QueryOver
接口,这实际上并不完全明显 - 它比最初出现的更加复杂和微妙。考虑使用NHibernate.Linq.LinqExtensionMethods.Query会给你一个
List
,对应于sql:This is actually not totally obvious if you use the
QueryOver
interface - which is more complex and subtle than it first appears. Consider usingNHibernate.Linq.LinqExtensionMethods.Query<T>
:Will give you a
List<string>
, corresponding to the sql: