我想检索尚未完成的事件。我的问题是startTime是DateTime而duration是Integer。
我怎样才能做这个添加?
这段代码:
$events = $this->getRepository('Event')->createQueryBuilder('e')
->where('e.startTime+e.duration > CURRENT_TIMESTAMP()')
->getQuery();
->getResult();
扔给我 :
SQLSTATE[42883]: Undefined function: 7 ERROR: operator does not exist: timestamp without time zone + integer