0

我有一个 Yii 应用程序,其中包含具有 MANY_MANY 关系的产品和兴趣。显然,这些映射具有以下关系:

            'interests'=>array(self::MANY_MANY, 'Interest', 'interest_product_assignment(product_id,interest_id)'),

我希望像这样使用 CDbCriteria 查询产品:

$products = Product::model()->with('interests')->findAll($criteria);

此查询工作正常。我需要扩展它以将其限制为仅具有存储在数组中的 id 的某些兴趣。我相信这应该可以通过以下方式实现:

    $products = Product::model()->with(
        'interests',
        array('condition' => {not_sure_what_to_put_here})
    )->findAll($criteria);

我不确定如何完成上述查询并且已经寻找了一段时间。并不是说我在这方面找不到任何东西,而是我无法理解我挖出的任何东西。

谁能发现如何完成此查询?

编辑

我尝试过 Telvin 的建议:

    $products = Product::model()->with(
        'interests',
        array('condition' => "interests_interests.interest_id IN ($selectedInterestsString)")
    )->findAll($criteria);

不添加“IN”语句进行查询。

4

1 回答 1

2

提供的 ID 数组:

$array_ids =    array('1','24','350','4609', ....)    
$array_ids_str = '"' . implode('","', array_values($array_ids)) . '"';

$products = Product::model()->with(array(
        'interests'=> array('condition' => "interest_id_column IN ($array_ids_str)"
    )))->findAll($criteria);
于 2013-10-22T03:21:31.820 回答