isSmallerThan method

Expression<bool> isSmallerThan(
  1. T value
)

Create a filter to check if the column is small than a value

Implementation

Expression<bool> isSmallerThan(T value) =>
    $composableFilter(column.isSmallerThanValue(value));