Пример #1
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 = ChildMlbTeamRefQuery::create();
     $criteria->add(MlbTeamRefTableMap::COL_MLB, $this->mlb);
     return $criteria;
 }
Пример #2
0
 /**
  * Get the associated ChildMlbTeamRef object
  *
  * @param  ConnectionInterface $con Optional Connection object.
  * @return ChildMlbTeamRef The associated ChildMlbTeamRef object.
  * @throws PropelException
  */
 public function getMlbTeamRef(ConnectionInterface $con = null)
 {
     if ($this->aMlbTeamRef === null && ($this->mlb !== "" && $this->mlb !== null)) {
         $this->aMlbTeamRef = ChildMlbTeamRefQuery::create()->findPk($this->mlb, $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->aMlbTeamRef->addPlayerss($this);
            */
     }
     return $this->aMlbTeamRef;
 }