/**
  * Returns a new ChildUserAttributeQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param     Criteria $criteria Optional Criteria to build the query from
  *
  * @return ChildUserAttributeQuery
  */
 public static function create($modelAlias = null, Criteria $criteria = null)
 {
     if ($criteria instanceof ChildUserAttributeQuery) {
         return $criteria;
     }
     $query = new ChildUserAttributeQuery();
     if (null !== $modelAlias) {
         $query->setModelAlias($modelAlias);
     }
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }
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 = ChildUserAttributeQuery::create();
     $criteria->add(UserAttributeTableMap::COL_ID, $this->id);
     return $criteria;
 }
 /**
  * Get the associated ChildUserAttribute object
  *
  * @param  ConnectionInterface $con Optional Connection object.
  * @return ChildUserAttribute The associated ChildUserAttribute object.
  * @throws PropelException
  */
 public function getUserAttribute(ConnectionInterface $con = null)
 {
     if ($this->aUserAttribute === null && ($this->user_attribute_id !== "" && $this->user_attribute_id !== null)) {
         $this->aUserAttribute = ChildUserAttributeQuery::create()->findPk($this->user_attribute_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->aUserAttribute->addUserAttributeValues($this);
            */
     }
     return $this->aUserAttribute;
 }