- django 엑셀불러오기
- javascript 바코드스캔
- Mac Oracle
- 맥 오라클설치
- 말줄임표시
- 강제이동
- ASP.Net Core 404
- jquery 바코드생성
- asp.net dropdownlist
- SSD 복사
- 하드 마이그레이션
- 404에러페이지
- asp.net Select
- 바코드 생성하기
- javascript redirection
- XSS PHP
- jquery 바코드
- php 캐쉬제거
- 파일업로드 체크
- 하드 윈도우 복사
- 바코드 스캔하기
- javascript 유효성체크
- 타임피커
- ViewBag
- ViewData
- 파일업로드 유효성체크
- asp.net core Select
- javascript 바코드 생성
- XSS방어
- TempData
웹개발자의 기지개
[ASP.Net Core] Entity Framework Core 2 - LINQ ( Include , ThenInclude ) 본문
[ASP.Net Core] Entity Framework Core 2 - LINQ ( Include , ThenInclude )
http://portfolio.wonpaper.net 2023. 9. 30. 11:20SQL 쿼리문에서 Join 문과 같이 관계가 연결되있는 부분을 LINQ 의 Include 와 ThenInclude 를 통하여 불러올수 있는데, 이에 좋은 포스팅 글이 있어서 소개한다.
https://entityframeworkcore.com/querying-data-include-theninclude
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
public class Customer
{
public int CustomerId { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Address { get; set; }
public virtual List<Invoice> Invoices { get; set; }
}
public class Invoice
{
public int InvoiceId { get; set; }
public DateTime Date { get; set; }
public int CustomerId { get; set; }
[ForeignKey("CustomerId")]
public Customer Customer { get; set; }
public List<InvoiceItem> Items { get; set; }
}
public class InvoiceItem
{
public int InvoiceItemId { get; set; }
public int InvoiceId { get; set; }
public string Code { get; set; }
[ForeignKey("InvoiceId")]
public virtual Invoice Invoice { get; set; }
}
Controller 에서
var customer = db.Customers.Single(c => c.CustomerId == cid);
var invoices = db.Customers.Include(c => c.Invoices).ThenInclude(c2 => c2.InvoiceItems)
.Where(c3 => c3.CustomerId == cid).ToList();
|
cs |
https://learn.microsoft.com/ko-kr/ef/core/querying/related-data/eager
https://learn.microsoft.com/ko-kr/ef/core/modeling/entity-types?tabs=data-annotations
[ MS 의 아주 좋은 EF 예제 ] - 다대다 관계 등 다양한 내용 수록
https://learn.microsoft.com/ko-kr/aspnet/core/data/ef-mvc/complex-data-model?view=aspnetcore-6.0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using (var context = new BloggingContext())
{
var blogs = context.Blogs
.Include(blog => blog.Posts)
.Include(blog => blog.Owner)
.ToList();
}
using (var context = new BloggingContext())
{
var blogs = context.Blogs
.Include(blog => blog.Posts)
.ThenInclude(post => post.Author)
.ThenInclude(author => author.Photo)
.Include(blog => blog.Owner)
.ThenInclude(owner => owner.Photo)
.ToList();
}
|
cs |
https://www.tutorialsteacher.com/linq/what-is-linq
https://www.tutorialsteacher.com/linq/linq-method-syntax
https://www.tutorialsteacher.com/linq/linq-lambda-expression
[ DTO 관련 내용 설명 ]
https://www.telerik.com/blogs/dotnet-basics-dto-data-transfer-object
[ EF Core Performance Optimization Challenge ]
https://www.youtube.com/watch?v=jSiGyPHqnpY
https://github.com/StefanTheCode/OptimizeMePlease
참고 : https://dleunji.tistory.com/45?category=999005
참고 : https://learn.microsoft.com/ko-kr/aspnet/core/data/ef-mvc/read-related-data?view=aspnetcore-6.0
참고 : https://github.com/dotnet/AspNetCore.Docs/tree/main/aspnetcore/data/ef-mvc/intro/samples/cu-final
ASP.NetCore 깃허브 자료실
https://github.com/dotnet/AspNetCore.Docs
'ASP.NET > ASP.NET Core' 카테고리의 다른 글
[ASP.Net Core] CSS 파일 수정시 실시간으로 반영시키기 (0) | 2024.03.06 |
---|---|
[ASP.Net Core] SignalR 을 이용한 실시간 채팅 (0) | 2023.12.24 |
[ASP.Net Core] SeriLog 로그 작업하기 (0) | 2023.09.13 |
[ASP.Net Core] Radio 버튼 처리해보기 (0) | 2023.07.22 |
[ASP.Net Core] 네이버에디터2 연동하기 - 에디터 이미지 첨부하기 (0) | 2023.07.11 |