我在Yii模型self::STAT
中有一些关系:
'countItem' => array(
self::STAT,
'DocumentCategory',
'parent_id'
),
我希望条件WHERE is_deleted = 0
可以吗?
谢谢!
答案 0 :(得分:1)
'countItem' => array(
self::STAT, 'DocumentCategory', 'parent_id', 'condition' => 'is_deleted = 0'
),
请看第4点关于关系查询选项:
答案 1 :(得分:0)
或者这个解决方案有帮助:
'select'=> 'COUNT(parent_id)', 'condition'=>'is_deleted=0',