Ejemplo n.º 1
0
 /**
  * Load an array of DlePollLog objects,
  * by NewsId Index(es)
  * @param integer $intNewsId
  * @param QQClause[] $objOptionalClauses additional optional QQClause objects for this query
  * @return DlePollLog[]
  */
 public static function LoadArrayByNewsId($intNewsId, $objOptionalClauses = null)
 {
     // Call DlePollLog::QueryArray to perform the LoadArrayByNewsId query
     try {
         return DlePollLog::QueryArray(QQ::Equal(QQN::DlePollLog()->NewsId, $intNewsId), $objOptionalClauses);
     } catch (QCallerException $objExc) {
         $objExc->IncrementOffset();
         throw $objExc;
     }
 }