웹플럭스 코틀린(Coroutine) db 사용법
간단한 건 findBy로 퉁칠수 있다. 하지만 그렇지 않다면 @Query를 사용하거나 QueryDsl을 사용해야 한다. 다양한 예제를 통해서 설명을 하면 //숫자 반환 @Query("select count(*) from ㅌㅌㅌㅌ where title like concat('%', :title, '%')") suspend fun findAllByTitleContainingCount(title: String):Long // 게시물 검색, 여러 리스트 @FlowPreview //여러개일때 붙임 @Query(" select row_number() over ( order by id) as idx, A.id, A.title, A.content,A.created_at \n" + " from ㅌㅌㅌㅌㅌ A \n" + ..
프로그래밍/안드로이드
2021. 5. 18. 14:14