Exemple #1
0
 public function delete()
 {
     $builder = $this->sqlBuilder;
     $this->sqlBuilder = new SqlBuilder($this);
     $this->where($this->column, $this->active);
     $return = parent::delete();
     $this->sqlBuilder = $builder;
     return $return;
 }