Activerecord Yii关系通过

Activerecord Yii关系通过,activerecord,yii,scope,yii-relations,Activerecord,Yii,Scope,Yii Relations,我有三张桌子: House: id name ... Activity: id Title ... Category: id title ... 我想建立一个类似于$category->house的关系,以返回所有在特定类别中有活动的房屋 我试过这样的方法: public function relations() { return array_merge(array( 'houses'=>array(self::HAS_MANY,'House',array('h

我有三张桌子:

House:
id
name
...

Activity:
id
Title
...

Category:
id
title
...
我想建立一个类似于
$category->house
的关系,以返回所有在特定类别中有活动的房屋

我试过这样的方法:

public function relations() {
    return array_merge(array(
       'houses'=>array(self::HAS_MANY,'House',array('house_id'=>'id'),'through'=>'activite'),
            ), parent::relations());
}
这是由于我的范围而产生的错误:

public function defaultScope() {
        return array(
            'condition' => "deleted='0'",
       );
}
如果我评论我的范围,它是有效的,但我希望让它们一起工作

这是错误消息:

CDbCommand failed to execute the SQL statement: SQLSTATE[23000]: Integrity constraint violation: 1052 Column 'deleted' in where clause is ambiguous. The SQL statement executed was: SELECT `houses`.`id` AS `t1_c0`, `houses`.`titre` AS `t1_c1`, `houses`.`rabais` AS `t1_c2`, `houses`.`slug` AS `t1_c3`, `houses`.`situation` AS `t1_c4`, `houses`.`conseil_utile` AS `t1_c5`, `houses`.`telephone1` AS `t1_c6`, `houses`.`telephone2` AS `t1_c7`, `houses`.`address1` AS `t1_c8`, `houses`.`address2` AS `t1_c9`, `houses`.`address3` AS `t1_c10`, `houses`.`gmap` AS `t1_c11`, `houses`.`link_site_web` AS `t1_c12`, `houses`.`link_facebook` AS `t1_c13`, `houses`.`link_autre` AS `t1_c14`, `houses`.`region_id` AS `t1_c15`, `houses`.`create_id` AS `t1_c16`, `houses`.`create_time` AS `t1_c17`, `houses`.`update_id` AS `t1_c18`, `houses`.`update_time` AS `t1_c19`, `houses`.`deleted` AS `t1_c20` FROM `house` `houses` LEFT OUTER JOIN `activite` `activites` ON (`activites`.`house_id`=`houses`.`id`) WHERE (deleted='0') AND (`activites`.`categorie_id`=:ypl0)

错误消息告诉您查询中有多个名为“已删除”的列。您需要指定要与已删除列进行比较的表。您可以通过如下方式在您的范围中指定来实现这一点:

public function defaultScope() {
        return array(
            'condition' => $this->getTableAlias(FALSE, FALSE).".deleted='0'",
       );
}