filter method

Add a filter to the statement

Any filters that were previously applied will be combined with an AND operator

Implementation

ProcessedTableManager<
    $Database,
    $Table,
    $Dataclass,
    $FilterComposer,
    $OrderingComposer,
    $ComputedFieldComposer,
    $CreateCompanionCallback,
    $UpdateCompanionCallback,
    $DataclassWithReferences,
    $ActiveDataclass,
    $CreatePrefetchHooksCallback> filter(
  Expression<bool> Function($FilterComposer f) f,
) {
  return _filter(f, _BooleanOperator.and);
}