Select all except one field in cakephp 3 query

后端 未结 2 489
天涯浪人
天涯浪人 2021-01-21 16:42

I just want to select all fields except one field in cakephp 3.

Ex. $this->select(\'fname\', \'lname\', \'mname\', \'email\', \'password\', \'status\', \'crea         


        
2条回答
  •  Happy的楠姐
    2021-01-21 17:20

    You could just find all and then at runtime hide what you dont need

    $model->hiddenProperties(['modified', 'created']);
    

提交回复
热议问题