我正在尝试过滤索赔日期早于2016-01-01的集合中的声明。学说不允许我做这种连接。有谁知道如何才能达到预期的效果?
public function getItems()
{
$criteria = Criteria::create()
->where(Criteria::expr()->gte('year' . '-' . 'month' . '-01', '2016-01-01));
return $this->items ? $this->items->matching($criteria) : null;
}
我得到的错误如下:
ORMException in ORMException.php line 101:
Unrecognized field: year-month-01