큐레이션 - member join 추가

This commit is contained in:
Klaus 2023-08-18 21:49:26 +09:00
parent 7b58335a42
commit 409af8b18c
1 changed files with 1 additions and 0 deletions

View File

@ -340,6 +340,7 @@ class AudioContentQueryRepositoryImpl(private val queryFactory: JPAQueryFactory)
)
)
.from(audioContent)
.innerJoin(audioContent.member, member)
.where(where)
.orderBy(audioContent.id.desc())
.fetch()