搜尋

首頁  >  問答  >  主體

doctrine2 - symfony中使用Doctrine一對多映射在取對應Entity數組時的如何先排序?

在使用Doctrine進行了一對多的映射,如一個人(Person),有多個小孩(Children),希望在使用Doctrine自動獲取Children時,小孩能按年齡大小排序。

請問:要重載哪個函數才能實現呢? persion->getChildren()呼叫了哪個函數進行SQL查詢呢?

這樣的需求,很難搜尋到結果,求前輩指點。

给我你的怀抱给我你的怀抱2808 天前705

全部回覆(2)我來回復

  • 伊谢尔伦

    伊谢尔伦2017-05-16 16:45:51

    解決方案如下:

    修改Person类的getChildren方法

    <?php
    // src/AppBundle/Entity/Person.php
    // ...
    
    use Doctrine\Common\Collections\Criteria;
    
    //...
    
        /**
         * @param string $orderedByAge "ASC"|"DESC"
         */
        public function getChildren($orderedByAge=null)
        {
            if (null === $orderedByAge) {
                return $this->children;
            }
            
            if (!in_array(strtoupper($orderedByAge), ['ASC', 'DESC'])) {
                throw new \InvalidArgumentException('参数错误,必须是"ASC"或"DESC"中的一个');
            }
            
            $order = 'ASC' === $orderedByAge ? Criteria::ASC : Criteria::DESC;
            
            $criteria = Criteria::create()->orderBy(['age' => $order]);
            
            return $this->children->matching($criteria);
        }
        
    // ...

    如果不想修改getChildren方法,可以写一个新的方法getChildrenOrderedByAge,道理同上。

    總結:

    Doctrine的一对多或者多对多关系中,Entity中所谓的属性是DoctrineCommonCollectionsCollection接口的某一实现的实例,默认情况下是DoctrineCommonCollectionsArrayCollection,上述解决方案中用到的就是这一接口的Filtering API(筛选接口),上述情况下,筛选的条件会最终转化到SQL層進行處理,以達到效能最佳化的目的。

    最後,相關官方文件連結如下:Filtering Collections

    回覆
    0
  • 我想大声告诉你

    我想大声告诉你2017-05-16 16:45:51

    使用 @vinzao 的方式沒問題,不過 Doctirne 是提供了 OrderBy 方法的:

    Person:

    <?php
    
    // src/AppBundle/Entity/Person.php
    
    class Person
    {
        /**
         * @ORM\OneToMany(targetEntity="AppBundle\Entity\Children", mappedBy="person")
         * @ORM\OrderBy({"age"="DESC"})
         */
        protected $childrens;
    }

    Children:

    <?php
    
    // src/AppBundle/Entity/Children.php
    
    class Children
    {
        /**
         * @ORM\ManyToOne(targetEntity="AppBundle\Entity\Person", inversedBy="childrens")
         */
        protected $person;
    }

    回覆
    0
  • 取消回覆