TypeOrm
TypeOrm 주요메서드
주요 메소드 및 기능create: 모델에 해당되는 객체를 생성하지만 데이터베이스에 저장하지 않음 const user = this.userRepository.create({ email: 'example@domain.com', });새 객체를 만들고 검증할 때 유용합니다.save: 객체를 데이터베이스에 저장 const user = await this.userRepository.save({ email: 'example@domain.com' });객체를 생성하고 즉시 데이터베이스에 저장할 때 사용됩니다.preload: 데이터베이스에 있는 데이터를 입력된 값으로 업데이트 const user = await this.userRepository.preload({ id: 101, email: 'new_em..
2024. 11. 12. 00:11