Posts by RaPi • 21 points
3 posts
-
1
votes1
answer112
viewsA: Symfony2/Doctrine - Query Join with three different entities
Worked this way: $qb ->select(' t.id, t.nsu, t.status, t.message, u.id as u_id, u.shortName as u_shortName , u.email as u_email, p.id as p_id, p.name as p_name')…
-
1
votes1
answer112
viewsQ: Symfony2/Doctrine - Query Join with three different entities
The way below works correctly: $qb->select('partial t.{id,nsu,status,message}, partial u.{id,shortName,email} as user') ->from('GatewayBundle:Transaction', 't') ->join('GatewayBundle:User',…
-
-1
votes2
answers210
viewsQ: How to add twitter-bootstrap to a symfony 2 project?
I created a symfony 2 project, now I want to include twitter-bootstrap in this project. How to make this inclusion?