Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8822007
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T05:59:33+00:00 2026-06-14T05:59:33+00:00

I have a problem while trying to USE QueryBuilder OR DQL. I have the

  • 0

I have a problem while trying to USE QueryBuilder OR DQL.

I have the following relation:

User <-1:n-> Profile <-n:m-> RouteGroup <-1:n-> Route

I would like to make a DQL that lists all the routes that a specific user has access.
I can get this information with the following code:

$usr = $this->container->get('security.context')->getToken()->getUser();
foreach ($usr->getProfiles() as $profile){
    foreach ($profile->getRoutegroups() as $routegroup){
        var_dump($routegroup->getRoutes()->toArray());
     }
}

For obvious reason i cant use this code, otherwise I will overload my server, LOL.

I tried the following approaches:

DQL:

$em->createQuery('SELECT p FROM CRMCoreBundle:User u
                  JOIN CRMCoreBundle:Profile p
                  JOIN CRMCoreBundle:RoleGroup rg
                  JOIN CRMCoreBundle:Role r
                  WHERE
                    u.id=:user')
        ->setParameter('user', $user->getId())
        ->getResult();

QueryBuilder (i tried using u.profiles – the name of the relationship instead of the entity – but this did not work also):

$em->createQueryBuilder()
        ->select('r')
        ->from('CRMCoreBundle:User', 'u')
        ->innerJoin('u.profiles','p')
        ->where('u.id = :user_id')
        ->setParameter('user_id', $user->getId())
        ->getQuery()
        ->getResult();

Can someone help please???

UPDATE: I tried Zeljko’s solution and made this script:

    return $this->getEntityManager()
        ->createQueryBuilder()
        ->select('u, r')
        ->from('CRMCoreBundle:User', 'u')
        ->innerJoin('u.profiles','p')
        ->innerJoin('p.routegroups','rg')
        ->innerJoin('rg.routes','r')
        ->where('u.id = :user_id')->setParameter('user_id', $user->getId())
        ->getQuery()
        ->getResult();

But i got this error:

The parent object of entity result with alias 'r' was not found. The parent alias is 'rg'.

If i change “->select(‘u, r’)” to “->select(‘r’)” i get this:

[Semantical Error] line 0, col -1 near 'SELECT r FROM': Error: Cannot select entity through identification variables without choosing at least one root entity alias.
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T05:59:34+00:00Added an answer on June 14, 2026 at 5:59 am

    After trying some alternatives I found out that I could make an inverse lookup, starting from routes to users. The solution was as follows:

    return $this->getEntityManager()
            ->createQueryBuilder()
            ->select('r')
            ->from('CRMCoreBundle:Route', 'r')
            ->innerJoin('r.routegroup','rg')
            ->innerJoin('rg.profiles','p')
            ->innerJoin('p.users','u')
            ->where('u.id = :user_id')
            ->setParameter('user_id', $user->getId())
            ->getQuery()
            ->getResult();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some problem while trying to use the schemagen tool from JAXB library
Hello guys i have a problem while trying to use the 'radio' input in
I have a problem while trying to use createLinearGradient //linear gradient canvas.beginPath(); canvas.arc(350,400,100,0,2*Math.PI,false); canvas.strokeStyle
I have this problem I've been trying to tackle for a while. I have
I have been trying to solve this problem for a while, but couldn't with
I have been working on this problem for a while now. I am trying
Hello I have a problem while trying to run a makefile. I change the
I've encountered an curious problem while trying to use some objects through JSNI in
I'm having the following problem while trying to execute unit tests. I'm working with
I've encountered a problem while trying to use the answer from a NDSolve in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.