Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
@SQLDelete
로 soft delete 구현-
@SQLDelete
로 실행된 SQL은 JPA가 제공하는 더티 체킹 메커니즘을 우회하여 직접 데이터베이스에 적용@Where
이 존재하지만 삭제된 데이터도 조회할 수 있어야 하기 때문에 soft delete 방식을 사용하더라도 불편해도 JPQL로 삭제 데이터를 조회
@Where
사용 가능, 비즈니스 상황을 고려This closes #42