在 /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)
发表评论 取消回复