从 subclassMap 引用组件

发布于 2024-12-27 03:43:59 字数 418 浏览 2 评论 0原文

我试图从子类映射中引用组件,但出现以下异常

“访问者尝试解析未解析的组件引用“Weight”,从“RecipeFermentable”的属性“Weight”引用,无法继续。”

public class RecipeFermentableMap : SubclassMap<RecipeFermentable>
{
    public RecipeFermentableMap()
    {
        Map(x => x.Pppg);
        Component(x => x.Weight);

        References(x => x.Recipe);
    }
}

当我使用普通的 ClassMap 执行此操作但在重构为 SubclassMap 后停止工作时,此操作有效。

I am trying to reference a component from a subclass map but am getting the following exception

"Visitor attempted on unresolved componented reference 'Weight', referenced from property 'Weight' of 'RecipeFermentable', unable to continue."

public class RecipeFermentableMap : SubclassMap<RecipeFermentable>
{
    public RecipeFermentableMap()
    {
        Map(x => x.Pppg);
        Component(x => x.Weight);

        References(x => x.Recipe);
    }
}

This work when I do it with a normal ClassMap but stopped working after re-factoring into a SubclassMap.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文