Quiz: Relationships in ASP.NET Core

A quiz to test your understanding of relationships in ASP.NET Core.

Quiz on relationships in ASP.NET Core

1

In the previous lessons, we have configured relations between Student and Teacher and between Student and ContactInfo. This allowed us to:

  • Save student information in one table and their contact information in another table.
  • Save teacher information in one table and assign multiple students to multiple teachers.

However, we are unable to save the teacher’s contact information. What is the best approach from the given options to resolve this issue?

A)

Create a new model class TeacherContactInfo. Establish a one-to-one relationship between Teacher and TeacherContactInfo.

B)

Adding a one-to-one relationship between ContactInfo and Teacher.

C)

Create a model class User with an attribute of Type, which specifies if a user is a student or a teacher. A One-to-One relation between User and ContactInfo.

Question 1 of 50 attempted

Get hands-on with 1200+ tech skills courses.