Example #1
0
 /**
  * Get the associated ChildCompanies object
  *
  * @param  ConnectionInterface $con Optional Connection object.
  * @return ChildCompanies The associated ChildCompanies object.
  * @throws PropelException
  */
 public function getCompaniesRelatedByDeveloperId(ConnectionInterface $con = null)
 {
     if ($this->aCompaniesRelatedByDeveloperId === null && ($this->developer_id !== "" && $this->developer_id !== null)) {
         $this->aCompaniesRelatedByDeveloperId = ChildCompaniesQuery::create()->findPk($this->developer_id, $con);
         /* The following can be used additionally to
               guarantee the related object contains a reference
               to this object.  This level of coupling may, however, be
               undesirable since it could result in an only partially populated collection
               in the referenced object.
               $this->aCompaniesRelatedByDeveloperId->addGamessRelatedByDeveloperId($this);
            */
     }
     return $this->aCompaniesRelatedByDeveloperId;
 }
Example #2
0
 /**
  * Builds a Criteria object containing the primary key for this object.
  *
  * Unlike buildCriteria() this method includes the primary key values regardless
  * of whether or not they have been modified.
  *
  * @throws LogicException if no primary key is defined
  *
  * @return Criteria The Criteria object containing value(s) for primary key(s).
  */
 public function buildPkeyCriteria()
 {
     $criteria = ChildCompaniesQuery::create();
     $criteria->add(CompaniesTableMap::COL_ID, $this->id);
     return $criteria;
 }
Example #3
0
 /**
  * Returns a new ChildCompaniesQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param     Criteria $criteria Optional Criteria to build the query from
  *
  * @return ChildCompaniesQuery
  */
 public static function create($modelAlias = null, Criteria $criteria = null)
 {
     if ($criteria instanceof ChildCompaniesQuery) {
         return $criteria;
     }
     $query = new ChildCompaniesQuery();
     if (null !== $modelAlias) {
         $query->setModelAlias($modelAlias);
     }
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }