Tagged Questions

1
vote
2answers
456 views

Doctrine - filter by foreign agregate value

how can i use result of Agregate function in where in Doctrine? For example i want to know user with silly much numbers. SELECT u.name, COUNT(p.id) AS users_phonenumber_count FROM users u ...
1
vote
1answer
738 views

Doctrine - own postgres function

how can i call my own function stored in postgres DB, while i am selecting data throught Doctrine_Query::create() ->select('schema.my_function(id)')