One-to-One

Learn about the one-to-one relationship in ASP.NET Core.

A quick recap on the one-to-one relationship. One object in the first table can only be related to one object in a second table. Similarly, one object in the second table can be related to only one object in the first.



For example, a person can have only one active driving license, and a driving license can be associated with one person only.
One-to-one relation between "Person" and "DrivingLicense"
One-to-one relation between "Person" and "DrivingLicense"

Implement a one-to-one relation in an example to improve your understanding of it within the context of ASP.NET.

Note: The term “Navigation Property” is used to describe properties that are responsible for creating a relationship between the two models.

Requirements

You are developing an application that stores students’ information consisting of the following things:

  • Full Name
  • Roll Number
  • Grade/CGPA
  • Contact Information
...