2012-09-04 46 views

回答

1

在你的GameRepository.php中。然後,做一個$ game-> getHomeSchoolId($ id); 您只需要處理您的選擇,從哪裏開始,但這非常簡單。

public function getHomeSchoolId($id) 
    { 
     return $this 
       ->_em 
       ->createQueryBuilder() 
       ->select('q.home_school_id') 
       ->from('BundleMyBundle:HomeSchool', 'q') 
       ->where('q.something = :id') 
       ->setParameter('id', $id) 
       ->getQuery() 
       ->getResult(); 
    } 

如果您想要通過關係鏈接的另一個實體的ID,則必須進行連接。只是問你是否需要更多信息。

相關問題