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], })