如何使用 fluencenhibernate 仅加载某些列?

发布于 2024-08-27 23:46:00 字数 219 浏览 5 评论 0原文

我想知道如何在填充实体对象时仅填充某些列?

我对该实体的某些属性感兴趣,而不是全部。

但是当我使用会话来获取实体时,它会发送诸如“select * from Customer”之类的查询。

但我想做“从客户中选择客户名称”。

我认为这与 LazyLoad() 有关,但我不确定具体如何。

任何帮助将不胜感激。

提前致谢, 阿什什

I want to know how can i fill only certain columns while filling the entity object?

i am interested in certain properties of the entity and not all.

but when i use session to fetch the entity it sends query like "select * from Customer" for example.

but i want to do "Select customerName from Customer".

I think it has some thing to do with LazyLoad() but i am not sure how exactly.

Any help will be highly appriciated.

Thanks in Advance,
Ashish

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

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

发布评论

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

评论(1

要走干脆点 2024-09-03 23:46:00
var defs = session.CreateCriteria(typeof(test));
defs.SetProjection(Projections.ProjectionList()
    .Add(Projections.Property("FirstColumn"));
var defs = session.CreateCriteria(typeof(test));
defs.SetProjection(Projections.ProjectionList()
    .Add(Projections.Property("FirstColumn"));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文