What are the differences between HasOne and References in nhibernate?

岁酱吖の 提交于 2019-12-05 08:27:35

问题


What are the differences between HasOne() and References() in nhibernate?


回答1:


HasOne creates a one-to-one mapping between tables for you. References creates a typical relational many-to-one relationship.

More defined:

  • a one-to-one relationship means that when one record exists in one table, it must (or can) have one and at most one record in the other referenced table. Example: User table and Options table (one user has one fixed set of options)
  • a many-to-one relationship means that when one records exists in one table, it can have many related records in another table. Example: User table and Purchase table (one user can do many purchases).

Note: where I say table you can replace that safely with class or entity as you wish, when using FluentNH it's easy to use them interchangeably.

This is more precisely explained in this fluentnhibernate wiki article.



来源:https://stackoverflow.com/questions/1622007/what-are-the-differences-between-hasone-and-references-in-nhibernate

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!