1
0
mirror of synced 2025-02-02 13:31:45 +03:00
Marco Pivetta 23af164d7a Note: this will still lead to the UnitOfWork#getSingleIdentifierValue() still being
called when not specifying the type of a DQL parameter being bound via
`Doctrine\ORM\Query#setParameter()`:

```php
$query->setParameter('foo', $theValue, $theType);
```

A full parameter bind is required in order to gain back performance:

```php
$query->setParameter('foo', $theValue, $theType);
```

This is up for discussion with patch reviewers.
2018-12-16 18:05:02 +01:00
..
2018-02-17 18:05:32 +01:00
2014-02-05 15:13:53 +01:00
2016-10-25 23:58:42 -03:00
2018-04-10 19:15:48 +02:00
2018-12-12 17:08:35 +03:00
2018-11-13 13:01:10 +03:00
2018-11-21 01:24:06 +01:00