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