You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
제 생각에는 POST 메서드에서 데이터를 수정할 가능성이 있는(?) save메서드를 사용하는 것 보다는
create 메서드를 사용하는게 예측 못한 상황을 줄이고, 방어적으로 프로그래밍 하는데 좋은 거 같아요.
-> 저도 동의합니다
또, 모든 service에 해당하는 사항은 아니지만, create를 썼을 때의 장점이 있다고 생각합니다. 예를 들어 issue를 create 하고 response 로 생성한 issue 를 반환해야하는 경우 create 를 통해 생성된 객체를 반환하면 간편하지만, save를 통해 생성한다면 따로 find 함수를 써야합니다. (query 상으로는 똑같습니다, 단지 코드상의 편리함, 가독성? 차이라 생각합니다.)
의논거리 🤔
출처 : https://typeorm.delightful.studio/index.html
create 메소드가 어떤 역할을 하는 녀석인지 애매하네요 . insert 메소드 구현시 create 메소드를 써야할까요?
The text was updated successfully, but these errors were encountered: