流利的 Nhibernate 多对多,其中表有多列
我正在尝试使用 Fluent NHibernate 映射多对多关系。
我有一个表用户和第二个表组织。关联表是UserOrganization,其中包含UserId 和OrganizationId。 UserOrganization 表还包含一些其他字段(YearBegan、YearEnd)。
我将如何继续使用流畅的映射来映射这些内容。
谢谢
I am trying to to map a many to many relationship using Fluent NHibernate.
I have a table User and a second table Organization. The association table is UserOrganization which contains the UserId and OrganizationId. The UserOrganization table also contains a few other fields (YearBegan, YearEnd).
How would I go ahead and map those using fluent mapping.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能应该将 UserOrganization 设为包含这些字段的自己的实体。这还为您在级联更新和删除方面提供了更大的灵活性。
You should probably make UserOrganization its own entity that contains those fields. That also gives you more flexibility in terms of cascading updates and deletes.