我正在使用Doctrine 1.2。我想执行一个Doctrine_Query,而不是返回一个Doctrine_Collection将返回我选择的类。就是这样的事情
$o = Doctrine_Query::create()
->from('Foo')
->execute();
$o; //instance of Doctrine_Collection
通常会返回一个通用的Doctrine_Collection对象。相反,我希望它返回一个Foo_Collection对象,我在其他地方定义
class Foo_Collection extends Doctrine_Collection
{
public function soSomethingSpecificToAFooObject()
{
}
}
这将允许我逻辑分组功能。
这可能吗?从我的阅读和代码库中寻找这似乎与水合器有关,但我还没有能够用手册页或教程来涵盖我所追求的内容。
答案 0 :(得分:4)
我非常确定您只需将以下内容添加到记录的setUp
或construct
方法中(表格应该在construct
之前运行setUp
想想):
$this->_table->setAttribute(Doctrine_Core::ATTR_COLLECTION_CLASS, 'Foo_Collection');
如果需要扩展Doctrine_Collection并在所有模型中使用不同的类,也可以在Doctrine_Connection上全局设置它。