QueryDSL 중급 문법 1. 프로젝션과 결과 반환 - 기본 프로젝션 대상이 하나일 경우 @Test public void simple_projection() throws Exception { List result = queryFactory .select(member.username) .from(member) .fetch(); for (String s : result) { System.out.println("s = " + s); } } 프로젝션 대상이 둘 이상일 경우 - 튜플 조회 @Test public void tuple_projection() throws Exception { List result = queryFactory .select(member.username, member.age) .from(..