final String sql = rm.schema() + " where m.id = ? and ci.entity_id = ? and ci.entity_type_enum = ? ";
return this.jdbcTemplate.queryForObject(sql, rm, new Object[] { meetingId, entityId, entityTypeId });
} catch (final EmptyResultDataAccessException e) {
throw new MeetingNotFoundException(meetingId);
}
}