学说标准 - 在标准内部连接

时间:2017-06-27 21:06:04

标签: php doctrine-orm criteria

我正在尝试过滤索赔日期早于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

0 个答案:

没有答案