php – 如何在Doctrine2中限制关联的实体结果?

前端之家收集整理的这篇文章主要介绍了php – 如何在Doctrine2中限制关联的实体结果?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下查询
$query = $this->getEntityManager()->createQuery('
                      SELECT u,p,m
                      FROM MyCoreBundle:User u
                      JOIN u.programmes p
                      JOIN u.motivation m
                      ');

$result = $query->getResult();

我想限制为每个用户返回的动机对象是我在其他地方使用的第二个查询的结果(在Motivation存储库中):

$query = $this->getEntityManager()->createQuery('
                      SELECT m FROM MyCoreBundle:Motivation m
                      WHERE m.user = :user
                      ORDER BY m.date DESC');

$query->setParameter('user',$user);
$query->setFirstResult(0);
$query->setMaxResults(1);
//@TODO if there is not result recorded for the user,return sth which indicates this
return $query->getResult();

有没有办法在第一个查询或更好的方法中限制和限制动机?

您不能限制关节行的数量.

如果你有Doctrine 2.1,你可以在集合上使用 – > slice():

$collection = $user->getMotivations();    // returns a LazyCollection,// makes no sql query

$motivations = $collection->slice(0,20); // queries the first 20 motivations 
                                          // for this user (if the association
                                          // was not fetch-joint)

http://www.doctrine-project.org/docs/orm/2.0/en/tutorials/extra-lazy-associations.html

原文链接:https://www.f2er.com/php/137990.html

猜你在找的PHP相关文章