/** * Returns a new ChildRunLogQuery object. * * @param string $modelAlias The alias of a model in the query * @param Criteria $criteria Optional Criteria to build the query from * * @return ChildRunLogQuery */ public static function create($modelAlias = null, Criteria $criteria = null) { if ($criteria instanceof ChildRunLogQuery) { return $criteria; } $query = new ChildRunLogQuery(); if (null !== $modelAlias) { $query->setModelAlias($modelAlias); } if ($criteria instanceof Criteria) { $query->mergeWith($criteria); } return $query; }
/** * Removes this object from datastore and sets delete attribute. * * @param ConnectionInterface $con * @return void * @throws PropelException * @see RunLog::setDeleted() * @see RunLog::isDeleted() */ public function delete(ConnectionInterface $con = null) { if ($this->isDeleted()) { throw new PropelException("This object has already been deleted."); } if ($con === null) { $con = Propel::getServiceContainer()->getWriteConnection(RunLogTableMap::DATABASE_NAME); } $con->transaction(function () use($con) { $deleteQuery = ChildRunLogQuery::create()->filterByPrimaryKey($this->getPrimaryKey()); $ret = $this->preDelete($con); if ($ret) { $deleteQuery->delete($con); $this->postDelete($con); $this->setDeleted(true); } }); }