如何在 Nhibernate 中返回多行?
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Criteria API
使用 HQL
Using Criteria API
Using HQL