加载部分实体集 ef4
我可以只从实体加载几个属性吗?
作为示例,我有一个具有以下属性的实体:
ID
DESCRIPTION
HEADER
PICTURE
我只想加载 ID,而不是其他属性。
我该怎么做?
Can I load only a few properties from an Entity?
As an example I have an entity with the following properties:
ID
DESCRIPTION
HEADER
PICTURE
I only want to load the IDs and not the other properties.
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的情况下,如果您只需要
ID
,您可以使用以下查询:您还可以使用投影(如果您需要加载多个属性,这很有用):
In your case if you just need the
ID
s, you can use the following query:You can also use projection (useful if you need to load more than one property):