使 byte[] 属性加载惰性
我正在使用 EF4 Code First 并且我有一个属性:
public byte[] Bytes {get;set;}
我可以使该属性延迟加载(仅在需要时加载)吗?
I'm using EF4 Code First and I have a property:
public byte[] Bytes {get;set;}
can I make this property load lazily ( only when it's needed) ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
表拆分在 EF 4.1 RC 中有效:
Table spliting works in EF 4.1 RC:
这确实是自 EF 1、EF 4 和 仍然是 EF 4.1。
该链接与 CTP5 相关,唯一可能的解决方案是表拆分。您基本上需要定义两个实体类,但将它们映射到数据库中的一个表。然后,加载 byte[] 的任务被简化为加载正常的导航属性。
帖子中的答案谈到了 CTP5 中的一个错误,该错误导致表分割无法正常工作,但希望现在可以在 EF 4.1 RC 中修复(但我不知道它是否真的修复了)。
That's indeed an old common request since EF 1, EF 4 and still in EF 4.1.
The link is related to CTP5 and the only possible solution is Table Splitting. You basically need to define two entity classes but map them to one single table in the database. The task to load the byte[] is then reduced to loading a normal navigation property.
The answer in the post talks about a bug in CTP5 which made Table splitting not working correctly but which is hopefully fixed now in EF 4.1 RC (but I don't know if it's really fixed).