any method

AnyExpression any([
  1. Expression where(
    1. T
    )?
])

Returns all models where any of the related models match filtering criteria.

Implementation

AnyExpression any([Expression Function(T)? where]) {
  return AnyExpression(
      ColumnCount(where?.call(_table), _tableWithRelations.id));
}