filter method

ProcessedTableManager<$Database, $Table, $Dataclass, $FilterComposer, $OrderingComposer, $ComputedFieldComposer, $CreateCompanionCallback, $UpdateCompanionCallback, $DataclassWithReferences, $ActiveDataclass, $CreatePrefetchHooksCallback> filter(
  1. Expression<bool> f(
    1. $FilterComposer f
    )
)

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);
}