休眠 3 和LINQ
我正在将一些代码从 Nhibernate 2.x 转换为 3.0。之前,我使用 LINQ 插件来获得 LINQ 支持。我的理解是,在 3.0 中,它被作为一流的功能引入。所以我的问题是,我曾经有过这个:
return new List<T>(session.Linq<T>().Where(where));
新语法看起来是什么样子?我浏览了 nhib 3 文档和教程,但没有看到任何有关 linq 的内容,因此我找不到可以进行模式化的示例。
I'm converting some code from Nhibernate 2.x to 3.0. Before, i was using the LINQ plugin, to get LINQ support. My understanding was that in 3.0 it got rolled in as a first class feature. So my question is, i used to have this:
return new List<T>(session.Linq<T>().Where(where));
What does that look like with the new syntax? i went through the nhib 3 docs and tutorial and didn't see anything about the linq stuff, so i couldn't find an example to pattern after.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在带有 Linq 的 NHibernate 3 中,您可以执行以下操作:
或者
不确定这是否是您正在寻找的。
编辑:
Query
是一种扩展方法。不要忘记添加using NHibernate.Linq
才能使用它。In NHibernate 3 with Linq you do this:
Or
Not sure if this is what you're looking for.
EDIT:
Query<T>
is an extension method. Don't forget to add theusing NHibernate.Linq
to be able to use it.没有新的语法。 Linq 仍然是 linq。旧提供程序中名为 Linq 的方法在新提供程序中名为 Query。
您可以使用 enumerable.ToList() 来代替 new List(enumerable) 来防止使用单独的 sql 查询加载列表中的每个对象。
There is no new syntax. Linq is still linq. The method named Linq in the old provider is named Query in the new one.
Instead of new List(enumerable) you can use enumerable.ToList() to prevent loading every object in the list with a separate sql query.