-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation
Description
https://mikro-orm.io/docs/usage-with-nestjs
The adapter forFeature is incorrectly documented.
The documentation shows
@Module({
imports: [MikroOrmModule.forFeature([Photo])],
providers: [PhotoService],
controllers: [PhotoController],
})
export class PhotoModule {}When it should be
@Module({
imports: [MikroOrmModule.forFeature([{entities: Photo}])],
providers: [PhotoService],
controllers: [PhotoController],
})
export class PhotoModule {}Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation