yii2 嵌套预加载

本身表关联 a ,a 关联 b

self::find()->with([
       'a'=> function ($query){
          $query->with('b');
     }
])
本作品采用《CC 协议》,转载必须注明作者和本文链接