donglu7998 2015-01-07 11:11
浏览 34
已采纳

Yii和关系查询

I have some tables that have foreign key references:

User -> Tech -> TechSchedule -> Location -> Customer

It seems that I can use the following query once to get any related data to the user. Consider the following query:

// load the user model
$model = User::model()->findByPk( Yii::app()->user->id );

// print
echo "<pre>", print_r( $model->attributes ), "</pre>";

// print more about the user
echo "<pre>", print_r( $model->Tech->TechSchedule[0]->Location->Customer ), "</pre>";

Prints out

Array
(
    [user_id] => 1
    [username] => someusername
    [password] => somepassword
    [salt] => somesalt
)

Customer Object
(
    [_new:CActiveRecord:private] => 
    [_attributes:CActiveRecord:private] => Array
        (
            [customer_id] => 14
            [more customer data...]
    )

[_related:CActiveRecord:private] => Array
    (
    )

[_c:CActiveRecord:private] => 
[_pk:CActiveRecord:private] => 14
[_alias:CActiveRecord:private] => t
[_errors:CModel:private] => Array
    (
    )

[_validators:CModel:private] => 
[_scenario:CModel:private] => update
[_e:CComponent:private] => 
[_m:CComponent:private] => 
)`

Is this normal behavior? If so, what would the purpose be of going through the hassle of writing relational queries, such as

$model = User::model()->with('Tech.TechSchedule.Location.Customer')->findByPk( Yii::app()->user->id );

展开全部

  • 写回答

1条回答 默认 最新

  • duanbiao4025 2015-01-07 11:22
    关注

    When you do something like $model->Tech->TechSchedule[0]->Location->Customer, you will see that PHP will send a query to the database for each relation you try to access. In your case, that would probably amount to 4 different DB queries sent to the database. In many cases, you want to reduce the amount of times PHP queries the database because it is very costly (timewise).

    If you do something like User::model()->with('...'), all those relations will be brought together with the User model. This might save you time if you know you will access that related data (less roundtrips to the DB) but you may bring unnecessary data if you just want to access data in the User table.

    More information here(official docs)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部