WCF 数据服务多对多关系

发布于 2024-12-17 21:50:18 字数 550 浏览 3 评论 0原文

我有一个包含用户和角色表的数据库。它们之间的关系是多对多,我有一个联结表UserRole。

我使用实体框架使用此配置将其映射到我的对象模型:

 modelBuilder.Entity<User>()
            .HasMany(u => u.Roles)
            .WithMany(r => r.Users)
            .Map(m =>  m.ToTable("UserRole")
                          .MapLeftKey("UserId")
                          .MapRightKey("RoleId"));

这按预期工作,但现在我需要使用 OData 和 Powerpivot 将其公开给 Excel。但由于导入到 Powerpivot 时关系会丢失,因此我还需要公开联结表,以便可以在 Powerpivot 内重新创建关系。

我知道我需要创建一个新实体 UserRole,但我不确定如何配置映射。

有人有什么建议吗?

I have a database with tables for users and roles. The relationship between them is many-to-many and I have a junction table UserRole.

I use Entity Framework to map this to my object model using this configuration:

 modelBuilder.Entity<User>()
            .HasMany(u => u.Roles)
            .WithMany(r => r.Users)
            .Map(m =>  m.ToTable("UserRole")
                          .MapLeftKey("UserId")
                          .MapRightKey("RoleId"));

This works as expected but now I need to expose this to Excel using OData and Powerpivot. But since the relationships are lost when imported into Powerpivot I also need to expose the junction table so that I can recreate the relationship inside Powerpivot.

I understand that I need to create a new entity, UserRole but I am not sure how to configure the mapping.

Does anyone have any suggestions?

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

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

发布评论

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