gpt4 book ai didi

symfony - 获取doctrine2/symfony2中的最后一个元素

转载 作者:行者123 更新时间:2023-12-02 11:23:22 24 4
gpt4 key购买 nike

我在两个实体 Collaborateur 和 Conge 之间建立了 ManyToOne 关系。

 /**
* @ORM\ManyToOne(targetEntity="Collaborateur", inversedBy="collaborateur", cascade={"remove"})
* @ORM\JoinColumn(name="collaborateur_id", referencedColumnName="id")
*/
protected $collaborateur;

在我的 CongeManager 我有这个功能:
 public function findCongeByCollaborateur ($collaborateur){
return $this->getRepository()->findOneBy(array('collaborateur'=>$collaborateur));
}

它只返回 Conge 的第一个元素,我想得到最后一个。

最佳答案

$this->getRepository()->findOneBy(
array('collaborateur'=>$collaborateur),
array('id' => 'DESC')
);

关于symfony - 获取doctrine2/symfony2中的最后一个元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25366633/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com