添加额外的列来查找编辑
我使用 EntityFramework 和我的对象之一(toList)作为查找编辑的数据源。
一切正常,但我想知道是否可以向该控件添加一个额外的列?这不是我的对象中的一个字段。
感谢您的帮助, 再见
Im using EntityFramework and one of my objects (toList) as datasource for lookupedit.
Everything works fine but I would like to know if I can add an extra column to that control ? WHich isnt as a field in my object.
Thanks for help,
bye
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,你可以。 EntityFramework 生成的类是分部类,因此只需在单独的分部类定义中添加所需的新位即可,
这些新位将像任何其他现有属性一样出现。显然,这些新添加的属性不会影响底层实体对象的状态,除非您专门将它们连接起来。
Yes you can. The classes generated by the EntityFramework are partial classes, so simply add the new bits you want on in a seperate partial class definition
These will appear like any other existing property. Obviously these newly added property will not affect the state of the underlying entity object unless you specifically wire them up to do so.