流畅的nhibernate,多对多,没有懒惰,循环引用

发布于 2024-10-10 01:34:13 字数 685 浏览 0 评论 0原文


我有两个类:具有多对多关系的 RoleUser 我像这样映射它们:

角色

HasManyToMany<User>(r => r.Users)
            .Table("CFG_User_Role")
            .ParentKeyColumn("RoleId")
            .ChildKeyColumn("UserId")
            .Cascade.None();

用户

HasManyToMany<Role>(u => u.Roles)
                .Table("CFG_User_Role")
                .ParentKeyColumn("UserId")
                .ChildKeyColumn("RoleId")
                .Cascade.None();

但是当我从数据库中获取角色时,我还得到了用户和用户的角色等等...... 我怎样才能停止这个循环引用? 我尝试使用 .Not.LazyLoad() 但它不起作用。

I have two class: Role and User with a ManyToMany relation
and I maped them like this :

Role

HasManyToMany<User>(r => r.Users)
            .Table("CFG_User_Role")
            .ParentKeyColumn("RoleId")
            .ChildKeyColumn("UserId")
            .Cascade.None();

User

HasManyToMany<Role>(u => u.Roles)
                .Table("CFG_User_Role")
                .ParentKeyColumn("UserId")
                .ChildKeyColumn("RoleId")
                .Cascade.None();

But when i get a role from the db i get also the users and the roles of the users and etc...
How can i stop this circular reference?
I tried with .Not.LazyLoad() but it doesn't work.

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

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

发布评论

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