Hello Adewale!

If I understood correctly what you are trying to do:

in the module you can import more than one entity:

TypeOrmModule.forFeature([User, OtherOneHere]),

Then in the service you import one repository per Entity

@InjectRepository(User)

private readonly userRepository: Repository<User>,

@InjectRepository(OtherOneHere)

private readonly otherOneHereRepository: Repository<OtherOneHere>,

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Responses (1)

Write a response

Yes this is what I want to do, I'll try this.
Thanks