引用不是级联的

发布于 2024-10-03 02:08:23 字数 455 浏览 3 评论 0原文

考虑以下代码:

class PrivilegeMap : IAutoMappingOverride<Privilege>
{
    public void Override(FluentNHibernate.Automapping.AutoMapping<Privilege> mapping)
    {
        mapping.Table("Privileges");

        mapping.References<Role>(x => x.Role)
            .Cascade.All();

        mapping.Map(x => x.Access);
    }
}

在我的代码中,我创建了一个具有多个权限的用户。当尝试保存用户时,这会使程序崩溃并出现错误:“对象引用未保存的瞬态实例”它声称角色对象未保存。我如何让它级联?

Consider the following code:

class PrivilegeMap : IAutoMappingOverride<Privilege>
{
    public void Override(FluentNHibernate.Automapping.AutoMapping<Privilege> mapping)
    {
        mapping.Table("Privileges");

        mapping.References<Role>(x => x.Role)
            .Cascade.All();

        mapping.Map(x => x.Access);
    }
}

In my code, I then create a user which has several privileges. When trying to save the user, this crashes the program with the error: "object references an unsaved transient instance" It claims that the role object is not save. How do I get it to cascade?

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

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

发布评论

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

评论(2

梦醒时光 2024-10-10 02:08:23

您没有显示 User 类的映射。你有 Cascade.All();在角色属性上?它是引用、HasMany 还是 HasManyToMany?

You didn't show the mapping for the User class. do you have Cascade.All(); on the Roles propery ? is it a reference , a HasMany or a HasManyToMany?

抱猫软卧 2024-10-10 02:08:23

我只是说管它,然后改用静态映射,而不是覆盖我不喜欢的所有内容。它现在按照我想要的方式工作。

I just said the heck with it and changed over to static mappings rather than overriding everything I don't like. It works the way I want to now.

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