Matthias Pigulla

Results 322 comments of Matthias Pigulla

I have tried to reproduce this issue in #12157, but was not successful (could not demonstrate the problem).

@cyrilverloop Can you make sure that all involved classes are actually seen by Doctrine as mapped classes? In a Symfony app, use the `doctrine:mapping:info` command to find out.

Also check: Do you happen to mix different mapping drivers for the different namespaces?

Could you guys please check if this is still an issue? I believe it has been fixed over the course of the last nine years. While I was working on...

Who could issue/give out these numbers? Not the individual Specifications (requires coordination between all Specifications for a particular query, possibly even before the common `QueryBuilder` is created).

`Query::useQueryCache(false)` could be used to turn off the Query Cache. Performance-wise it does not make a difference when `uniqid()`-based identifiers/names are used, but at least we'd not fill up the...

Maybe a query hint, possibly even a default one set on the `EntityManager`, could be used to trigger something like a generic "DQL pre-processor" before the `Parser` is activated; or...

Here's a whacky helper class that... well... solves it? The main con argument is that the replacement of temporary, `uniqid()` based identifiers happens with a naïve string replacement. This is...

Just came across the fact that one can add `Criteria` to a `QueryBuilder` instance through ``QueryBuilder::addCriteria()``. The values to compare against are placed in parameters, and the parameter names are...