/** * Get the associated MissionRequest object * * @param PropelPDO Optional Connection object. * @return MissionRequest The associated MissionRequest object. * @throws PropelException */ public function getMissionRequest(PropelPDO $con = null) { if ($this->aMissionRequest === null && $this->request_id !== null) { $c = new Criteria(MissionRequestPeer::DATABASE_NAME); $c->add(MissionRequestPeer::ID, $this->request_id); $this->aMissionRequest = MissionRequestPeer::doSelectOne($c, $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->aMissionRequest->addMissions($this); */ } return $this->aMissionRequest; }