/thinkphp/library/think/model/relation/HasMany.php 文件中修改 getRelationCountQuery 方法:

public function getRelationCountQuery($closure, &$name = null)
{
    if ($closure) {
        $return = call_user_func_array($closure, [ & $this->query]);
        if ($return && is_string($return)) {
            $name = $return;
        }
    }
    $localKey = $this->localKey ?: $this->parent->getPk();
    $parentTable = $this->parent->getTable();
    $options = $this->parent->getOptions();
    if(isset($options['alias'][$parentTable])){
        $parentTable = $options['alias'][$parentTable];
    }
    return $this->query->whereExp($this->foreignKey, '=' . $parentTable . '.' . $localKey)->fetchSql()->count();
}

修改后的方法通过 $this->parent->getTable () 获取了父模型的表名,并通过 $options [‘alias’] 获取了可能存在的表名别名,在构建关联关系的查询条件时,考虑到了表名别名的情况。

或者不使用子查询方式:

->withCount('orders', false)

点赞(0) 打赏

评论列表 共有 0 条评论

暂无评论

微信小程序

微信扫一扫体验

立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部