我想知道如何从这个模型中选择特定的朋友。
模型结构在这里:
/**
* @MongoDB\ReferenceMany(targetDocument="Users", mappedBy="myFriends")
*/
public $friendsWithMe;
/**
* @MongoDB\ReferenceMany(targetDocument="Users", inversedBy="friendsWithMe")
*/
public $myFriends;
public function __construct() {
$this->friendsWithMe = new \Doctrine\Common\Collections\ArrayCollection();
$this->myFriends = new \Doctrine\Common\Collections\ArrayCollection();
}
/**
* Add friend
* @param Users $user
*/
public function addFriend(Users $user) {
$user->friendsWithMe[] = $this;
$this->myFriends[] = $user;
}
/**
* Get friends
* @return Array $myFriends
*/
public function getFriends() {
return $this->myFriends;
}
为了获得用户朋友,我使用以下代码:
foreach($userSearch->getFriends() as $friend){
$output .= " FriendName: " . $friend->getFirstName() . " - ID: " . $friend->getId() . "<br>";
}
因此,如果我不想获得所有朋友并遍历他们,我如何才能获得特定用户或用户(朋友/s)让我们说 20 岁以上。
编辑 在这里我添加了集合中的文档,所以我正在寻找一种方法来检索两个朋友中的一个,例如谁比 x 年大而不是客户端的循环。
{
"_id": ObjectId("503f3028e71a38840d000000"),
"birthdate": ISODate("2012-08-30T09: 19: 36.0Z"),
"email": "mail",
"firstName": "asd",
"myFriends": {
"0": {
"$ref": "Users",
"$id": ObjectId("503e1683921da8c80b000002"),
"$db": "testing"
},
"1": {
"$ref": "Users",
"$id": ObjectId("503e0a8ee71a38080b000001"),
"$db": "testing"
}
},
"password": "123",
"role": {
"$ref": "UserRoles",
"$id": ObjectId("50486ba1e71a384c15000000"),
"$db": "testing"
},
"username": "gizmo"
}
注意:我正在使用 ZF2 项目的模块(ZF2 + DoctrineOdmMongodb)