로딩
티스토리 데이터 처리 중입니다.

Custom repository(사용자 정의 레포지토리) - typeORM

 Custom repository(사용자 정의 레포지토리) - typeORM

데이터 베이스 작업 로직을 작성하던 중 내가 작성한 함수를 typeORM에 정의된 메서드처럼 사용할 수 있는 방법이 있다는 걸 알게 되었다. https://orkhan.gitbook.io/typeorm/docs/custom-repository Custom repositories - typeorm You can create a custom repository which should contain methods to work with your database. Usually custom repositories are created for a single entity and contains its specific queries.

For example, let's say we want to have a meth.....