Implementing one-to-zero-or-one relation in SQL Server

Mostafa picture Mostafa · Oct 4, 2011 · Viewed 25.8k times · Source

I'm using Entity Framework 4.1 database first approach. I've used legacy database. In my edmx file which created entity classes based on tables in the legacy database, there is a one-to-zero-or-one association between some entities.

Although I explored the tables of database and relation between them I didn't find out how one-to-zero-or-one relation have been implemented in database.

For more information I put some screenshots of my database diagram and the property of its relation and correspondent entities in edmx file:

enter image description here enter image description here

Answer

Ladislav Mrnka picture Ladislav Mrnka · Oct 4, 2011

The 1-0..1 relation in your database is directly visible. It is built between Course and OnlineCourse tables where Course is principal in relation (1) and OnlineCourse is dependent with FK configured on CourseID. FK is also PK of the OnlineCourse = it must be unique and because of that it is 0..1.

Database "always" uses 1 - 0..1 because real 1 - 1 cannot be effectively used for data insertion. 1 - 1 means that left must be inserted after right but right must be inserted after left = impossible. Because of that 1 - 0..1 is used where left is principal and must be inserted before right and right is dependent and must be inserted after left.