私の行動:
$matches_request = $em->getRepository('Bundle:ChanceMatch')->findByRequestUser(1);
$matches_reply = $em->getRepository('Bundle:ChanceMatch')->findByReplyUser(1);
or
たとえば、getRepository を使用してクエリを条件に結合することは可能ですか。
$matches_reply = $em->getRepository('FrontendChancesBundle:ChanceMatch')->findBy(array('requestUser' => 1, 'replyUser' => 1);
//this of course gives me the a result when `requestUser` and `replyUser` is `1`.
私のテーブル
id | requestUser | replyUser
....
12 | 1 | 2
13 | 5 | 1
私のクエリはid 12 & 13
.
手伝ってくれてありがとう!