fixed a missing alias

This commit is contained in:
Dave M. 2023-11-17 08:18:52 -05:00
parent c1755d250b
commit fab70aec6a
1 changed files with 1 additions and 1 deletions

View File

@ -606,7 +606,7 @@ class Repository
$pkField = key($primaryKeyField);
return $this->where($this->entityClass::field($primaryKeyField[$pkField]->name ?? $pkField, false), $value);
return $this->where($this->entityClass::field($primaryKeyField[$pkField]->name ?? $pkField, $alias), $value);
}
public function withJoin(string|array $fields, array $options = []) : self