ltField method

CondCol<ValType> ltField(
  1. Field<ValType> rhs
)

Returns a "less than" condition

FindStatement find = FindStatement();
Field<int> age = Field<int>('age');
find.where(age.ltCol(col('age', 'employee')));

Implementation

CondCol<ValType> ltField(Field<ValType> rhs) =>
    CondCol.lt<ValType>(this, rhs);