最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

nestjs - Entity Manager is undefined - Stack Overflow

programmeradmin2浏览0评论
@Module({
    imports: [
        ConfigModule.forRoot({
            isGlobal: true,
            load: [
                serverConfigRegistration,
                databaseConfigRegistration,
            ],
        }),
        MikroOrmModule.forRootAsync({
            useFactory: (configService: ConfigService) => {
                return mikroOrmConfigFactory({
                    serviceName: 'users',
                    entities: [Invoice],
                    debug: true,
                }, configService)
            },
            inject: [ConfigService],
        }),
        ServiceModule,
    ],
    controllers: [AppController],
})
export class AppModule {}
import { EntityManager } from '@mikro-orm/core';

@Injectable()
export class UserDbService {
    constructor(
        private readonly entityManager: EntityManager,
    ) {}
}

When I try to call some methods from this.entityManager I see undefined. UserDbService has a correct providing on AppModule. What could it be? Versions: "@mikro-orm/core": "^6.4.11", "@mikro-orm/nestjs": "^6.1.1",

发布评论

评论列表(0)

  1. 暂无评论