Is it possible to perform a manual query after loading the models from the db? Something like this: ```php foreach ($table->getAllRecords() as $record) { if ($record->customFunctionOrFilter()){ unset($record); } } return $table ->columns([...]) ``` I know this hasn't the best performance.