が参加し、代わりにそのテーブルのIDsymfonyでカスタムクエリを作成するには?私は、内部でカスタムクエリを作成する必要が
public function showAction($id)
{
$em = $this->getDoctrine()->getManager();
$entity = $em->getRepository('chriscrudBundle:BpCrpCard')->find($id);
if (!$entity) {
throw $this->createNotFoundException('Unable to find BpCrpCard entity.');
}
$deleteForm = $this->createDeleteForm($id);
return $this->render('chriscrudBundle:BpCrpCard:show.html.twig', array(
'entity' => $entity,
'delete_form' => $deleteForm->createView(),
));
}
説明なしのコードのみの回答は良くありません。 – Blackbam
これは質問に対する答えを提供しません。十分な[評判](http://stackoverflow.com/help/whats-reputation)があれば、[任意の投稿にコメントする]ことができます(http://stackoverflow.com/help/privileges/comment)。代わりに、[質問者からの説明を必要としない回答を提供する](http://meta.stackexchange.com/questions/214173/why-do-i-need-50-reputation-to-comment-what-can- i-do-代わりに)。 - [レビューの投稿](レビュー/低品質の投稿/ 15572781) – Blackbam
ありがとうございました –