使用 Fluent Nhibernate 进行多对多映射
我有一个表 USERS 和 GROUPS 表。
我想添加另一个表 UserGroups。
我如何映射这些表。
有什么例子吗?
I have a table USERS and GROUPS table.
I want to add another table UserGroups.
How can I map these tables.
Any example?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据我的理解,您可以这样做:
并在用户的映射文件中:
或
HasManyToMany(x => x.group).Column("group") -->参考映射组
from my understanging you do it as:
and in mapping file for user:
or
HasManyToMany(x => x.group).Column("group") --> referenceing mapping group