如何在 Nhibernate 中返回多行?

发布于 2024-09-16 23:53:07 字数 233 浏览 3 评论 0原文

我是 Nhibernate 的新手。我想检索针对实体的记录集合。例如,为了检索单个记录,我使用了以下语句:

resultObject=session.Get(id);

上面的语句将根据以下内容检索单个记录 我提供了“id”。

但我想从表中检索多行,就像我们从以下 sql 语句中检索的方式一样: 从 Student 中选择 *

我如何使用 Nhibernate 执行此操作?请指导?

I am new to Nhibernate. I want to retrieve collection of records against an entity. For example to retrieve a single record I have used the following statement:

resultObject=session.Get(id);

This above statement would retrieve a single record based on the
'id" I provide.

But I want to retrieve multiple rows from a table the way we retrieve from the following sql statement:
Select * from Student

How can I do this using Nhibernate? Please guide?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

内心激荡 2024-09-23 23:53:07

使用 Criteria API

ICriteria criteria = session.CreateCriteria(typeof(Student));
criteria.List<Student>();

使用 HQL

IQuery nhQuery = session.CreateQuery("FROM Student");
nhQuery.List<Student>()

Using Criteria API

ICriteria criteria = session.CreateCriteria(typeof(Student));
criteria.List<Student>();

Using HQL

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