79563782

Date: 2025-04-09 08:06:38
Score: 1
Natty:
Report link

If you are using nestjs, you have to defined your entities in your module as follows

@Module({
  imports: [
    TypeOrmModule.forFeature([
     User
    ]),
  ],
  providers: [UserService, UserRepository],
  exports: [UserService],
})
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Viranga