DevExpress 自引用关联问题

发布于 2024-10-17 16:40:32 字数 729 浏览 1 评论 0 原文

我正在使用 DevExpress eXpressApp Framework 为保险机构开发 LOB 应用程序。我的问题出在域对象(业务对象)及其关联或关系方面。

我有一个 MyPerson 对象,主要是一个 PolicyHolder 实例,我需要将同一类的配偶和孩子关联到 PolicyHolder。当我在 MyPersonn 类中尝试以下代码、运行代码并尝试添加配偶时,我收到错误:

“存在格式错误的关联‘Person-Spouse’。无法找到‘PolicyMIS.Module.MyPerson’的关联成员“PolicyMIS.Module.MyPerson”类中的“.Spouse””

    private MyPerson _spouse;
    [Association("Person-Spouse", typeof(MyPerson))]
    public MyPerson Spouse
    {
        get
        {
            return _spouse;
        }

        set
        {
            SetPropertyValue("Spouse", ref _spouse, value);
        }
    }

I am using the DevExpress eXpressApp Framework to develop an LOB app for an insurance agency. My problem is in the area of the domain objects (business objects) and their associations, or relations.

I have a MyPerson object, primarily a PolicyHolder instance, and I need to associate a Spouse and Children of the same class to the PolicyHolder. When I tried the following code in the MyPersonn class, ran the code and tried to add a spouse, I got the error:

"There is a malformed association 'Person-Spouse'. Cannot find the associated member for 'PolicyMIS.Module.MyPerson.Spouse' in the class 'PolicyMIS.Module.MyPerson'"

    private MyPerson _spouse;
    [Association("Person-Spouse", typeof(MyPerson))]
    public MyPerson Spouse
    {
        get
        {
            return _spouse;
        }

        set
        {
            SetPropertyValue("Spouse", ref _spouse, value);
        }
    }

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

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

发布评论

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

评论(1

风吹雨成花 2024-10-24 16:40:33

请查看我们的搜索引擎针对您的问题返回的结果:

自引用关联

这有帮助吗?

如果没有,我们需要有关您的任务的更多信息。

Please take a look at the results retuned by our search engine for your problem:

self-reference association

Does this help?

If not, we need more information about your task.

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