Вы должны определить category_products relation
в своих wswebproducts model
, к которому присоединяется ProductID.
public function relations()
{
return array(
'category_products' => array(self::MANY_MANY, 'Product', 'category_products(catid, ProductID)'),
);
}
Извлечь руководство , это круто: -)