/** * Gets all associated NarroSuggestionVotesAsUser as an array of NarroSuggestionVote objects * @param QQClause[] $objOptionalClauses additional optional QQClause objects for this query * @return NarroSuggestionVote[] */ public function GetNarroSuggestionVoteAsUserArray($objOptionalClauses = null) { if (is_null($this->intUserId)) { return array(); } try { return NarroSuggestionVote::LoadArrayByUserId($this->intUserId, $objOptionalClauses); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } }