mirror of
https://github.com/doctrine/orm.git
synced 2026-03-24 06:52:09 +01:00
DDC-2455: Setting classes in the entity manager #3079
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @doctrinebot on GitHub (May 16, 2013).
Originally assigned to: @beberlei on GitHub.
Jira issue originally created by user pcastrotigre:
I am creating my own bundle in Sf2 which will be used for third libraries, but I need to provide some simple and complex queries from this.
For simple queries i have no problem because I set the repository with the class from the third library.
Something like this:
But when I need complex queries i have to work with the Entity Manager instead of working with the Repository. So tables are named as MyBundle (Group), but not how the third library named (sf_group). As a consequence the SQL throws an error saying that my table does not exist.
This is how I am trying to retrieve:
I sent the className as the entity to avoid this. Something like:
However i need a lot of queries with JOINs, so i would have to change every entity name, which is not convenient.
What another way could I implemment this?
Thanks for your help.
@doctrinebot commented on GitHub (May 26, 2013):
Comment created by @beberlei:
This is a question for the mailinglist.
createQueryBuilder() and createQuery() have exactly the same functionality. Just a different API. You can do the same with both.
@doctrinebot commented on GitHub (May 26, 2013):
Issue was closed with resolution "Invalid"