This image shows a portion of the Program.cs file with the below code in it. public class Department { public int DepartmentId { get; set; } public string Name { get; set; } [ForeignKey("Manager")] public int ManagerId { get; set; } public Employee Manager { get; set; } }