0

UsersController にこのコードがあります

$userModel = Users::model()->with('userSubscriptionTypes')->find(array(
            'order'=>'userSubscriptionTypes.idUserSubscriptionType DESC',
            'limit'=>1,
            'condition'=>'t.paypal_profile_id=:paypal_profile_id', 
            'params'=>array(':paypal_profile_id'=>'I-S09AAFCLHH57')
        ));

これは私にエラーを与えています:

CDbCommand failed to execute the SQL statement: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'userSubscriptionTypes.idUserSubscriptionType' in 'order clause'. The SQL statement executed was: SELECT `t`.`idUser` AS `t0_c0`, `t`.`username` AS `t0_c1`, `t`.`password` AS `t0_c2`, `t`.`email_address` AS `t0_c3`, `t`.`firstname` AS `t0_c4`, `t`.`lastname` AS `t0_c5`, `t`.`isAdmin` AS `t0_c6`, `t`.`paypal_profile_id` AS `t0_c7`, `t`.`date_created` AS `t0_c8` FROM `users` `t` WHERE (t.paypal_profile_id=:paypal_profile_id) ORDER BY userSubscriptionTypes.idUserSubscriptionType DESC LIMIT 1 

withエラーが発生した SQL コード スニペットに基づいて動作していないようです。

これはUsers.phpリレーション モデル コードです。

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(
            'trackedItems' => array(self::HAS_MANY, 'TrackedItems', 'idUser'),
            'userSubscriptionTypes' => array(self::HAS_MANY, 'UserSubscriptionType', 'idUser'),
        );
}

これの何が問題なのですか?そしてアイデア?

ありがとう!

4

0 に答える 0