我有一个列insert_date
的实体。我应该从当前日期的表中获取所有数据。
E.g。如果今天是2017年5月10日我将只获得1排。
public function getShopDayCloseWithCurrentDate()
{
return $this->createQueryBuilder('shopDayClose')
->where("shopDayClose.insertDate ?? :currentDate")
->setParameter('currentDate', ??)
->getQuery()
->getOneOrNullResult();
}
我在回购中添加了功能,但我不知道如何以正确的方式使用日期格式。