-
QueryMapper.MapperNameCondition.between(T valueA, T valueB)
Creates a condition where the specified column name is
between the provided values.
QueryMapper.MapperNameCondition.eq(T value)
Creates a condition where the specified column name
equals the provided value.
QueryMapper.MapperNameCondition.gt(T value)
Creates a condition where the specified column name is
greater than the provided value.
QueryMapper.MapperNameCondition.gte(T value)
Creates a condition where the specified column name is
greater than or equal to the provided value.
QueryMapper.MapperNameCondition.in(Iterable<T> values)
Creates a condition where the specified column name is
in the provided iterable values.
QueryMapper.MapperNameCondition.like(String value)
Creates a condition where the specified column name is
like the provided value.
QueryMapper.MapperNameCondition.lt(T value)
Creates a condition where the specified column name is
less than the provided value.
QueryMapper.MapperNameCondition.lte(T value)
Creates a condition where the specified column name is
less than or equal to the provided value.