添加额外的列来查找编辑

发布于 2024-10-03 18:06:18 字数 122 浏览 4 评论 0原文

我使用 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 技术交流群。

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

发布评论

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

评论(1

秉烛思 2024-10-10 18:06:18

是的,你可以。 EntityFramework 生成的类是分部类,因此只需在单独的分部类定义中添加所需的新位即可,

public partial class ExistingEntityObject : EntityObject
{
    public String NewProperty { get; set; }
}

这些新位将像任何其他现有属性一样出现。显然,这些新添加的属性不会影响底层实体对象的状态,除非您专门将它们连接起来。

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

public partial class ExistingEntityObject : EntityObject
{
    public String NewProperty { get; set; }
}

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文