コード例 #1
0
ファイル: WpTerms.php プロジェクト: dipu/Propel-ORM-Test
 /**
  * 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 = ChildWpTermsQuery::create();
     $criteria->add(WpTermsTableMap::COL_TERM_ID, $this->term_id);
     return $criteria;
 }