方向顺序无效

Invalid order by orientation

在我的数据库中,我有列 iduiddata,我想按 DESCid 进行排序。

$this->getDoctrine()->getRepository(FormInputs::class)->findBy(['uid' => $uid], ['id', 'DESC']);

如果我使用第二个参数 (['id', 'DESC']),我会得到以下错误:

Invalid order by orientation specified for App\Entity\FormInputs#0

为什么会出现此错误?

尝试通过

$this->getDoctrine()->getRepository(FormInputs::class)->
findBy(
  array('uid'=>$uid),
  array('id'=>'DESC')
);