MikroORM Eager 设置为 false 但关系仍在加载

问题描述

我有以下实体:

@Entity()
export class SomeEntity extends BaseEntity implements ISomeEntity {
@ManyToOne(() => OtherEntity,{
    nullable: true,eager: false
  })
  otherEntity: OtherEntity;
}

但在运行 otherEntityfindOne 函数时仍会加载 find

我不知道如何在不影响 where 条件的情况下停止加载其他关系。因为这会导致循环问题。

基于这里的装饰器https://mikro-orm.io/docs/decorators/#manytoone

eager boolean yes 总是加载关系。

解决方法

显然,在 MikroORM 中,它链接了之前自动加载的任何关系,而不管其是否渴望。这是设计使然。