我的 UserBan 模型中定义了以下关系:
public function relations()
{
// NOTE: you may need to adjust the relation name and the related
// class name for the relations automatically generated below.
return array(
'user' => array(self::BELONGS_TO, 'User', 'userId'),
'target' => array(self::BELONGS_TO, 'User', 'targetId'),
'author' => array(self::BELONGS_TO, 'User', 'authorId'),
);
}
现在我试着这样做:
$criteria->with = array('user', 'target');
它尖叫以下内容,因为User mdel与Nicknames有默认的范围关系:
Not unique table/alias: 'nicknames'
SQL:
SELECT COUNT(DISTINCT `t`.`id`) FROM `userban` `t`
LEFT OUTER JOIN `user` `user` ON (`t`.`userId`=`user`.`id`)
LEFT OUTER JOIN `nickname` `nicknames` ON (`nicknames`.`userId`=`user`.`id`)
LEFT OUTER JOIN `user` `target` ON (`t`.`targetId`=`target`.`id`)
LEFT OUTER JOIN `nickname` `nicknames` ON (`nicknames`.`userId`=`target`.`id`)
WHERE ((user.name LIKE :username) AND (:dateStart<=t.createdAt AND :dateEnd>=t.createdAt))
我该如何克服这个?我在哪里“别名”我的联合表?
EDIT 以下是用户模型的默认范围:
public function defaultScope()
{
return array(
'with' => 'nicknames',
'together' => true
);
}
答案 0 :(得分:8)
当您为同一个表定义多个关系时,最好为每个关系指定唯一的别名。在指定关系时这样做:
return array(
'user' => array(self::BELONGS_TO, 'User', 'userId', 'alias' => 'unick'),
'target' => array(self::BELONGS_TO, 'User', 'targetId', 'alias' => 'tnick'),
'author' => array(self::BELONGS_TO, 'User', 'authorId', 'alias' => 'anick'),
);
有关详细信息,请参阅CActiveRecord::relations
的文档。
更新:您似乎还需要使用不同的别名来加入默认范围中的nicknames
表。我不确定最好的方法是什么,但这很有效,而且很容易做到:
public function defaultScope()
{
static $counter = 0;
return array(
'with' => array(
'nicknames' => array('alias' => 'nick'.($counter++))
),
'together' => true,
);
}