流畅的 NHibernate 多对多映射
我有一个场景,其中我有两个表,第三个桥接表用于多对多关系。
表 A:
- AID
- AName
表 B:
- BID
- BName
表AB
- 援助
- 出价
- 允许
谢谢
I have a scenario in which i got 2 tables, and a third bridge table for many to many relationship.
Table A:
- AID
- AName
Table B:
- BID
- BName
TableAB
- AID
- BID
- Allow
I have extra field in bridge table how to map many to many in this scenario.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你必须为桥接表创建一个实体!
看这里:
NHibernate 多对多关系表中的附加字段
更新
我还发现了这个解决方法,但我还没有测试过:
Nhibernate 多对多,连接中带有额外字段表
I think you have to create an entity for the bridge table!
Look here:
additional fields in NHibernate many-to-many relation tables
update
I also found this workaround but I've not tested it:
Nhibernate many-to-many with extra fields in the join table