I got this problem and not found any solution with yii instrument. Someone know how to solve this problem ?
Eventually, i used this bad code
$params
Try that:
$recipes = Recipes::find() ->where(['in', 'id', $recipeIds]) ->orderBy([new \yii\db\Expression('FIELD (id, ' . implode(',', array_reverse(array_keys($params))) . ')')]) ->limit($this->count) ->all();
For use orderBy with FIELD (...) see https://github.com/yiisoft/yii2/issues/553
orderBy
FIELD (...)