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