public function getItemById($id)
    {
        $select = $this->getTableGateway()->getSql()->select();
        $select->columns(['*', new Expression('#TCPPRIMARYTABLE.'.$this->idField.' As DT_RowId')]);
#TCPJOINSYNTX
        $select->where->equalTo('#TCPPRIMARYTABLE.'.$this->idField, $id);
        $resultSet = $this->getTableGateway()->selectWith($select);
        return $resultSet;
    } 
  |