Get neighbors in many to many relation with doctrine










0















Many User entities has many House entities using joint table in annotation



class User

/**
* @ORMManyToMany(targetEntity="House")
* @ORMJoinTable(name="house_user",
* joinColumns=@ORMJoinColumn(name="user_uuid", rerencedColumnName="uuid") ,
* inverseJoinColumns=@ORMJoinColumn(name="house_uuid", ferencedColumnName="uuid")
*
* )
*/
public $houses;


I need to get all neighbors from all houses where given user living inclungin user itself. Also I need to get counter of this neighbours.



Using SQL i can get this by join joint table 2 times:



select DISTINCT usr.*
FROM users usr
LEFT JOIN house_user houseDUser ON houseDUser.user_uuid = 'uuid-v4-goes-here'
LEFT JOIN house h on houseDUser.housing_complex_uuid = h.uuid
LEFT JOIN house_user houseUser ON houseUser.housing_complex_uuid = h.uuid
WHERE usr.uuid = houseUser.user_uuid


And so I can get neighbors using QueryBuilder (but not so elegant, i think):



 $qb = $this->reateQueryBuilder('usr')
->addSelect('users')
->leftJoin(HouseUser::class, 'houses', Join::WITH, 'usr MEMBER OF houses.users')
->leftJoin(User::class, 'users', Join::WITH, 'users MEMBER OF houses.users')
->where('usr = :userUuid')
->setParameter('userUuid', (string)$user->getUuid());

$paginator = new Paginator($qb);
$count = count($paginator);


But as a count i got 1 everytime. Is there the right way to do queries like this?










share|improve this question


























    0















    Many User entities has many House entities using joint table in annotation



    class User

    /**
    * @ORMManyToMany(targetEntity="House")
    * @ORMJoinTable(name="house_user",
    * joinColumns=@ORMJoinColumn(name="user_uuid", rerencedColumnName="uuid") ,
    * inverseJoinColumns=@ORMJoinColumn(name="house_uuid", ferencedColumnName="uuid")
    *
    * )
    */
    public $houses;


    I need to get all neighbors from all houses where given user living inclungin user itself. Also I need to get counter of this neighbours.



    Using SQL i can get this by join joint table 2 times:



    select DISTINCT usr.*
    FROM users usr
    LEFT JOIN house_user houseDUser ON houseDUser.user_uuid = 'uuid-v4-goes-here'
    LEFT JOIN house h on houseDUser.housing_complex_uuid = h.uuid
    LEFT JOIN house_user houseUser ON houseUser.housing_complex_uuid = h.uuid
    WHERE usr.uuid = houseUser.user_uuid


    And so I can get neighbors using QueryBuilder (but not so elegant, i think):



     $qb = $this->reateQueryBuilder('usr')
    ->addSelect('users')
    ->leftJoin(HouseUser::class, 'houses', Join::WITH, 'usr MEMBER OF houses.users')
    ->leftJoin(User::class, 'users', Join::WITH, 'users MEMBER OF houses.users')
    ->where('usr = :userUuid')
    ->setParameter('userUuid', (string)$user->getUuid());

    $paginator = new Paginator($qb);
    $count = count($paginator);


    But as a count i got 1 everytime. Is there the right way to do queries like this?










    share|improve this question
























      0












      0








      0








      Many User entities has many House entities using joint table in annotation



      class User

      /**
      * @ORMManyToMany(targetEntity="House")
      * @ORMJoinTable(name="house_user",
      * joinColumns=@ORMJoinColumn(name="user_uuid", rerencedColumnName="uuid") ,
      * inverseJoinColumns=@ORMJoinColumn(name="house_uuid", ferencedColumnName="uuid")
      *
      * )
      */
      public $houses;


      I need to get all neighbors from all houses where given user living inclungin user itself. Also I need to get counter of this neighbours.



      Using SQL i can get this by join joint table 2 times:



      select DISTINCT usr.*
      FROM users usr
      LEFT JOIN house_user houseDUser ON houseDUser.user_uuid = 'uuid-v4-goes-here'
      LEFT JOIN house h on houseDUser.housing_complex_uuid = h.uuid
      LEFT JOIN house_user houseUser ON houseUser.housing_complex_uuid = h.uuid
      WHERE usr.uuid = houseUser.user_uuid


      And so I can get neighbors using QueryBuilder (but not so elegant, i think):



       $qb = $this->reateQueryBuilder('usr')
      ->addSelect('users')
      ->leftJoin(HouseUser::class, 'houses', Join::WITH, 'usr MEMBER OF houses.users')
      ->leftJoin(User::class, 'users', Join::WITH, 'users MEMBER OF houses.users')
      ->where('usr = :userUuid')
      ->setParameter('userUuid', (string)$user->getUuid());

      $paginator = new Paginator($qb);
      $count = count($paginator);


      But as a count i got 1 everytime. Is there the right way to do queries like this?










      share|improve this question














      Many User entities has many House entities using joint table in annotation



      class User

      /**
      * @ORMManyToMany(targetEntity="House")
      * @ORMJoinTable(name="house_user",
      * joinColumns=@ORMJoinColumn(name="user_uuid", rerencedColumnName="uuid") ,
      * inverseJoinColumns=@ORMJoinColumn(name="house_uuid", ferencedColumnName="uuid")
      *
      * )
      */
      public $houses;


      I need to get all neighbors from all houses where given user living inclungin user itself. Also I need to get counter of this neighbours.



      Using SQL i can get this by join joint table 2 times:



      select DISTINCT usr.*
      FROM users usr
      LEFT JOIN house_user houseDUser ON houseDUser.user_uuid = 'uuid-v4-goes-here'
      LEFT JOIN house h on houseDUser.housing_complex_uuid = h.uuid
      LEFT JOIN house_user houseUser ON houseUser.housing_complex_uuid = h.uuid
      WHERE usr.uuid = houseUser.user_uuid


      And so I can get neighbors using QueryBuilder (but not so elegant, i think):



       $qb = $this->reateQueryBuilder('usr')
      ->addSelect('users')
      ->leftJoin(HouseUser::class, 'houses', Join::WITH, 'usr MEMBER OF houses.users')
      ->leftJoin(User::class, 'users', Join::WITH, 'users MEMBER OF houses.users')
      ->where('usr = :userUuid')
      ->setParameter('userUuid', (string)$user->getUuid());

      $paginator = new Paginator($qb);
      $count = count($paginator);


      But as a count i got 1 everytime. Is there the right way to do queries like this?







      doctrine many-to-many






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 14 '18 at 17:19









      NekaNeka

      76411130




      76411130






















          0






          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53305594%2fget-neighbors-in-many-to-many-relation-with-doctrine%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53305594%2fget-neighbors-in-many-to-many-relation-with-doctrine%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          這個網誌中的熱門文章

          What does pagestruct do in Eviews?

          Dutch intervention in Lombok and Karangasem

          Channel Islands