استفاده از innerJoinWith :
$model = User::find() ->innerJoinWith('comments', false) ->all(); // equivalent to the above $model = User::find() ->joinWith('comments', false, 'INNER JOIN') ->all();
استفاده از innerJoinWith :
$model = User::find() ->innerJoinWith('comments', false) ->all(); // equivalent to the above $model = User::find() ->joinWith('comments', false, 'INNER JOIN') ->all();