Esempio n. 1
0
 /**
  * Get the associated CourseInstructorAssociation object
  *
  * @param      PropelPDO Optional Connection object.
  * @return     CourseInstructorAssociation The associated CourseInstructorAssociation object.
  * @throws     PropelException
  */
 public function getCourseInstructorAssociation(PropelPDO $con = null)
 {
     if ($this->aCourseInstructorAssociation === null && $this->course_ins_id !== null) {
         $c = new Criteria(CourseInstructorAssociationPeer::DATABASE_NAME);
         $c->add(CourseInstructorAssociationPeer::ID, $this->course_ins_id);
         $this->aCourseInstructorAssociation = CourseInstructorAssociationPeer::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->aCourseInstructorAssociation->addCourseRatings($this);
         		 */
     }
     return $this->aCourseInstructorAssociation;
 }