Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are the differences between HasOne and References in nhibernate?

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

like image 801
Hannoun Yassir Avatar asked Oct 25 '09 20:10

Hannoun Yassir


1 Answers

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.

like image 64
Abel Avatar answered Oct 09 '22 00:10

Abel