I'm experiencing the same problem as #963 , i wrongfully wrote there but it was already a closed issue, so i moved here as a new issue. What i'm doing is uniting two "phone contact" columns (telephone + cellularNumber) searching in both of them at the same time. It didn't work so i simplified it to the minimum: one virtual column as a mirror of another text column (telephone). The configuration:
public function getLineFormatter()
{
return function ($row) {
$row['phonecontact'] = $row['telephone'];
return $row;
};
}
The problem(if not a configuration problem) seems to be in the query generation: inside doctrine\orm[..]\Comparison.php the left operand is indeed an array: [0=>'partner.telephone'], and the code fails on an Array-to-String conversion. Any ideas?
I'm experiencing the same problem as #963 , i wrongfully wrote there but it was already a closed issue, so i moved here as a new issue. What i'm doing is uniting two "phone contact" columns (telephone + cellularNumber) searching in both of them at the same time. It didn't work so i simplified it to the minimum: one virtual column as a mirror of another text column (telephone). The configuration:
The problem(if not a configuration problem) seems to be in the query generation: inside doctrine\orm[..]\Comparison.php the left operand is indeed an array: [0=>'partner.telephone'], and the code fails on an Array-to-String conversion. Any ideas?