Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dont work with MongoDB DocumentManager #182

Open
JDolezal opened this issue Dec 30, 2021 · 0 comments
Open

Dont work with MongoDB DocumentManager #182

JDolezal opened this issue Dec 30, 2021 · 0 comments

Comments

@JDolezal
Copy link

JDolezal commented Dec 30, 2021

EntityToPropertyTransformer.php and EntitiesToPropertyTransformer.php are not compatible with MongoDB DocumentManager.

The following code in EntityToPropertyTransformer.php

$entity = $this->em->createQueryBuilder() ->select('entity') ->from($this->className, 'entity') ->where('entity.'.$this->primaryKey.' = :id') ->setParameter('id', $value) ->getQuery() ->getSingleResult();

has to be changed to

$entity = $this->em->getRepository($this->className)->find($value);

to get it working. Similar issue with EntitiesToPropertyTransformer.php

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant