easy-swoole / orm

31 stars 27 forks source link

关联以后不返回关联信息 #149

Closed livesitter closed 4 years ago

livesitter commented 4 years ago

easyswoole框架版本号、orm组件版本号 [Version] 3.3.8-dev 、1.4.12

问题描述和截图 [Question]

我有两个表,Article表的ser_id关联User表 使用主键查询 image 查询结果是这样的,并没有关联的信息 image

然后我将user属性赋值给一个变量 image 查询结果就成了这样 image

预期结果,使用主键查询的时候就返回带有关系信息的结果。

排查情况和最小复现脚本 [Tests and Recurrence]

链接: https://pan.baidu.com/s/1ZpFSIkZHBxCIwph9e0Y3uQ 提取码: 43bj

xuanyanwow commented 4 years ago

1.代码和结果为正常预期 2.自行思考:自动查询所有关联关系,在一对多、仅需要主记录几个字段的情况下,有效数据1单位,附带数据n倍单位。 3.自行看文档with预关联

livesitter commented 4 years ago

原来是差了这一步,谢谢哈