为什么TypeORM不想找到我的关系?

时间:2019-11-01 19:40:00

标签: mysql typescript typeorm

我正在将TypeORM与MySQL配合使用,并且试图检索用户的角色,但是TypeORM不想使用OneToMany关系,它给了我未定义的含义。

代码:

    @OneToMany(() => userRole, (userroles: userRole) => userroles.fk_user, {
        onDelete: 'RESTRICT',
        onUpdate: 'RESTRICT'
    })
    roles: role[];

我在这里附上了调试器的图片

enter image description here

0 个答案:

没有答案