休眠 3 和LINQ

发布于 2024-10-18 09:55:04 字数 273 浏览 2 评论 0原文

我正在将一些代码从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

陌若浮生 2024-10-25 09:55:05

在带有 Linq 的 NHibernate 3 中,您可以执行以下操作:

from u in session.Query<User>()
where u.Username == username
select u

或者

session.Query<User>().Where(u => u.Username == username)

不确定这是否是您正在寻找的。

编辑: Query 是一种扩展方法。不要忘记添加 using NHibernate.Linq 才能使用它。

In NHibernate 3 with Linq you do this:

from u in session.Query<User>()
where u.Username == username
select u

Or

session.Query<User>().Where(u => u.Username == username)

Not sure if this is what you're looking for.

EDIT: Query<T> is an extension method. Don't forget to add the using NHibernate.Linq to be able to use it.

清醇 2024-10-25 09:55:05

没有新的语法。 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文