$criteria = new CDbCriteria(array(
'condition' => $this->filter,
'params' => $this->paramsFilter,
'with' => $this->relationFilter
));
try {
$this->success = $this->abstractModel->deleteAll($criteria);
} catch (Exception $e) {
$this->success = false;
$errors = $this->getErrorMySql($e);
}
this code not work, because not use with params, like findAll.
what is the best form to make this DELETE work?