Skip to content

Commit

Permalink
Fix where conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
asika32764 committed Jan 8, 2025
1 parent 5e3583d commit ce7441c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/EntityMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -1420,6 +1420,11 @@ protected function handleConditionColumn(string $key, mixed $value): mixed
$metadata = $this->getMetadata();

$col = $metadata->getColumn($key);

if (!$col) {
return $value;
}

$prop = $col->getProperty();

// UUID Binary
Expand Down

0 comments on commit ce7441c

Please sign in to comment.