lt method

Cond<ValType> lt(
  1. ValType value
)

Returns a "less than" condition

FindStatement find = FindStatement();
Field<int> age = Field<int>('age');
find.where(age.lt(20));

Implementation

Cond<ValType> lt(ValType value) => Cond.lt<ValType>(this, value);