ltF 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> ltF(String name, {String? table}) =>
CondCol.lt<ValType>(this, Field<ValType>.inTable(table, name));