Principal Entity: 부모 엔티티 Dependent Entity: 자식 엔티티, FK 프로퍼티를 가진다. Navigation Properties: PK, FK처럼 테이블의 컬럼에는 존재하지 않으나, EFCore의 관계이동 기능 수행용 프로퍼티 * EFCore에서 "관계성" relationship은 두개의 Endpoint을 가지며, 양쪽의 각 endpoint는 navigation properties를 통해서 관계를 형성시킴. public class Employee{ public int EmployeeId {get; set;} public string Name {get; set;} public DepartmentId {get; set;} public virtual Department Department {get; set;} } public class Department { public int DepartmentId {get; set;} public string Name {ge...
원문 링크 : 엔티티 관계(Entity Relationship )