Change employee to a left join

This commit is contained in:
2025-07-20 21:14:39 -07:00
parent a5573dce4e
commit fb7e37bfb0
6 changed files with 91 additions and 12 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ namespace BoredCareers.Entities {
public class Employee {
public int ID { get; set; } // PK
public int AccountID { get; set; } // FK
public int CompanyID { get; set; } // FK
public Company Company { get; set; } = new Company(); // FK
}
}