Yaroslav Hlina

Results 2 comments of Yaroslav Hlina

I used this method to get list of entities that gonna be persisted/removed/updated, like this: $this->entityManager->computeChangeSets(); $unitOfWork = $this->entityManager->getUnitOfWork(); $toInsert = $unitOfWork->getScheduledEntityInsertions(); $toUpdate = $unitOfWork->getScheduledEntityUpdates(); $toDelete = $unitOfWork->getScheduledEntityDeletions(); ... All...

> Maybe unrelated, but I also got this behavior for a custom `MoneyType` that extends the `StringType`. This exception is thrown even when the "length" is defined in the metadata...