如何检索用户关注的用户的所有帖子,类似于社交媒体上的家庭Feed。
在SQL中这很简单,但在DQL中看起来是什么样的?
select * from post
join friends on friend_user_id = post.from_id
where user_id = :uid
我尝试了很多与此相似的方法,但无法使用:
$this->getEntityManager()
->createQuery(
'SELECT p
FROM MyBundle:Post p
JOIN MyBundle:User u WITH p.from IN u.myFriends
WHERE u.id = :uid'
)
我的用户实体looks like in the documentation:
<?php
/** @Entity **/
class User
{
// ...
/**
* @ManyToMany(targetEntity="User", mappedBy="myFriends")
**/
private $friendsWithMe;
/**
* @ManyToMany(targetEntity="User", inversedBy="friendsWithMe")
* @JoinTable(name="friends",
* joinColumns={@JoinColumn(name="user_id", referencedColumnName="id")},
* inverseJoinColumns={@JoinColumn(name="friend_user_id", referencedColumnName="id")}
* )
**/
private $myFriends;
public function __construct() {
$this->friendsWithMe = new \Doctrine\Common\Collections\ArrayCollection();
$this->myFriends = new \Doctrine\Common\Collections\ArrayCollection();
}
// ...
}
这里是我的邮政实体:
<?php
/** @Entity **/
class Post
{
// ...
/**
* @ManyToOne(targetEntity="User")
**/
private $from;
// ...
}
答案 0 :(得分:0)
简单的工作DQL方法如下:
pos
希望这个帮助