ltField method
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);