在yii2.0框架中插入查询

时间:2015-07-14 10:11:17

标签: yii2-basic-app

我正在使用Yii 2.0框架,任何人都可以帮我在控制器中编写插入查询,我正在编写这样的查询,这是一个正确的查询

$userId = \Yii::$app->user->identity->id;
    $restId = \app\models\Restaurantbusiness::find()->select('restaurentID')->where(['userId' => $userId ])->one(); 
    $restdetailId = $restId->restaurentID;
    $restomenuID = Restomenu::find()->insert('restaurantBusiness_restaurentID')->where(['restaurantBusiness_restaurentID' => $restdetailId])->One();

请帮我写出正确的插入查询。提前致谢

1 个答案:

答案 0 :(得分:1)

好吧我假设没有人知道: - /

我找到了解决方案

根本不需要编写任何插入查询, 保存前在控制器中 我写了这个

$ model-> restaurantBusiness_restaurentID = $ restdetailId;

这就是全部。