ASP.NET/ASP.NET Core
[ASP.Net Core] 복잡한 데이터 모델 (1대다대1)
http://portfolio.wonpaper.net
2024. 3. 15. 02:41
위와 같은 복잡한 모델을 가진 경우, EntityFramework 를 활용하여 코딩을 하는 아주 좋은 예제이다.
1대다대1
Student - Enrollment - Course : 학생 - 수강 등록 - 교과 과정
Instructor - CourseAssignment - Course : 선생님 - 교과과정 할당 - 교과 과정
https://learn.microsoft.com/ko-kr/aspnet/core/data/ef-mvc/complex-data-model?view=aspnetcore-6.0
자습서: 관련 데이터 읽기 - ASP.NET MVC 및 EF Core 사용 | Microsoft Learn
자습서: 관련 데이터 업데이트 - ASP.NET MVC 및 EF Core 사용 | Microsoft Learn
자습서: 동시성 처리 - ASP.NET MVC 및 EF Core 사용 | Microsoft Learn
자습서: 상속 구현 - ASP.NET MVC 및 EF Core 사용 | Microsoft Learn