在 Nhibernate 中创建多对多关系
我的数据库中有 2 个实体: - 学生 - MODULE
这是一种多对多关系,一个学生可以学习许多模块,而一个特定的模块可以由许多学生组成。
我如何使用 Nhibernate 实现多对多关系(仅使用 .hbm 文件而不是纯 NHibernate)以及数据库和类结构如何
I have 2 entities in my database:
- STUDENT
- MODULE
This is a many-to-many relationship in that a STUDENT can take many modules and a particular MODULE can consist of many students.
How would I implement a many-to-many relationship using Nhibernate (only using .hbm files and NOT pure NHibernate) and how would the database and class structure look like
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个教程: http://www.barebonescoder.com /2010/08/nhibernate 多对多关系/
Here is a tutorial : http://www.barebonescoder.com/2010/08/nhibernate-many-to-many-relationships/