Tagged Questions
The querybuilder tag has no wiki summary.
2
votes
1answer
162 views
Doctrine2 fetching rows that have manyToMany association by QueryBuilder
everyone.
I have 2 entities City and POI. Mapping looks like this:
class City {
/**
* @ORM\ManyToMany(targetEntity="POI", mappedBy="cities")
* @ORM\OrderBy({"position" = "ASC"})
*/
protected ...
2
votes
2answers
182 views
doctrine2 - querybuilder, empty parameters
what can i do if the parameter has no value?
my query:
$query = $this->_em->createQueryBuilder()
->select('u')
->from('Users', 'u')
...
1
vote
1answer
452 views
doctrine 2 query builder and join tables
hello guys im tryin to get all comments for each post in my home page
return
$this->createQueryBuilder('c')
->select('c')
->from('Sdz\BlogBundle\Entity\Commentaire' ,'c')
...
0
votes
1answer
36 views
doctrine 2 - query builder - order by count..?
can this be done.. ordering by associations?
$q = $this->em->createQueryBuilder()
->select('c')
->from('\Entities\Users', 'c')
...
0
votes
1answer
56 views
JPA QueryBuilder
Please help to create a query!
I have to select all Tags by categoryId via common parent object.
I have next:
@Table(name="ADVERT")
@Entity(name="Advert")
public class JpaAdvert implements Advert{
...
0
votes
2answers
271 views
Doctrine2 QueryBuilder subquery with SUM?
I'm trying to get Hotels from my database that have enough beds (user specifies guest count parameter). The query should look like this:
SELECT h.* FROM Hotel AS h
WHERE
(SELECT SUM(r.guestCount ...
0
votes
2answers
127 views
How to use RIA Services QueryBuilder<T>
According to the QueryBuilder’s parameter list, an EntityQuery of T object is a candidate for query shaping. However, my attempts to do so have been unsuccessful. I’m wondering if anyone knows how to ...
0
votes
0answers
157 views
Doctrine 2.1 QueryBuilder Expr
I was wondering if it was possible to write a DQL query similar to this:
Select * from sometable t where (substring(t.somecol, 0, 1) IN ('A', 'B'));
I'm just trying to compare the first letter of a ...
0
votes
1answer
57 views
QueryBuilder Modifying Entered Query
Why does QueryBuilder modify my query? Is there a workaround?
When I enter the query below, QueryBuilder modifies the query to the more complex version below, requiring additional parameters for ...