every method

EveryExpression every(
  1. Expression where(
    1. T
    )
)

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

Implementation

EveryExpression every(Expression Function(T) where) {
  return EveryExpression(
    ColumnCount(where.call(_table), _tableWithRelations.id),
  );
}