isBeforeOrOn method

Expression<bool> isBeforeOrOn(
  1. T value
)

Create a filter to check if the column is before or on a DateTime

Implementation

Expression<bool> isBeforeOrOn(T value) =>
    $composableFilter(column.isSmallerOrEqualValue(value));