Symfony - 查找最后创建的实体
Symfony - finding last created entity
我想从我的数据库中找到最后创建的用户 table。
这是最好的方法还是我应该为此使用 QueryBuilder?
public function findLastCreatedUser()
{
return $this->getUserRepository()->findOneBy([], [
'id' => 'DESC'
]);
}
这是一个很好的方法!如果您不需要根据一组参数更改查询,这可能是最佳选择。
我想从我的数据库中找到最后创建的用户 table。
这是最好的方法还是我应该为此使用 QueryBuilder?
public function findLastCreatedUser()
{
return $this->getUserRepository()->findOneBy([], [
'id' => 'DESC'
]);
}
这是一个很好的方法!如果您不需要根据一组参数更改查询,这可能是最佳选择。