是否可以使用sfDoctrinePager的doctrines魔术方法(在本例中为findBy *)?我收到以下错误:
Call to undefined method Doctrine_Collection::offset()
以下是代码:
$this->pager->setQuery(Doctrine::getTable('notification')->findByUserId($this->getUser()->getGuardUser()->getId()));
我知道我可以自己构建一个查询,只是想知道是否可以使用“魔法”方法。
答案 0 :(得分:1)