반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 스프링
- 알고리즘공부
- 기술공부
- DDD
- 카프카
- 스프링부트
- 기술면접공부
- JPA 공부
- 코테준비
- K8S
- JPA
- nestjs공부
- nestjs
- 스프링부트공부
- JPA예제
- 플러터 공부
- JPA공부
- 코테공부
- querydsl
- Flutter
- 스프링 공부
- nestjs스터디
- 자료구조공부
- Axon framework
- Kafka
- 스프링공부
- 플러터 개발
- JPA스터디
- 프로그래머스
- 자바공부
Archives
- Today
- Total
목록TypeORM (1)
DevBoi
[NestJs] QueryBuilder
queryBuilder를 간략하게 썼었다. 근데 조금 더 심화를 써보자 1) 조인되는 엔티티가 여러개이다. 2) 조인되는 엔티티중 원하는 값만 가져오자 3) 각 조인되는 엔티티는 마스터 이외에는 left조인으로 해보자 or innerJoin으로 해보자 해당 조건을 충족하는 쿼리빌더는 아래와 같다. async getCart(id: string): Promise { const result = await this.cartRepository.createQueryBuilder('cart') .innerJoin(Food,'food','food.id=cart.foodId') .innerJoin(Member,'member','member.id=cart.memberId') .select (['food.id','food...
Develop/[NestJs]
2023. 7. 9. 00:20