lte method

Expr<bool?> lte(
  1. T value
)

Tests whether this value is less than or equal to the bound value.

Implementation

Expr<bool?> lte(T value) => _compare(
  '<=',
  ParameterNode(codec.encode(value), storageType: codec.sqlType),
);