我在 Extbase 项目中使用了这个存储库方法,它工作得很好。
public function findRandom() {
$rows = $this->createQuery()->execute()->count();
$row_number = mt_rand(0, max(0, ($rows - 1)));
return $this->createQuery()->setOffset($row_number)->setLimit(1)->execute();
}
它在 TYPO3 Flow 中不起作用。为什么?我应该改变什么?