ltEqField method
Returns a "less than equal to" condition
FindStatement find = FindStatement();
Field<int> age = Field<int>('age');
find.where(age.ltEqCol(col('age', 'employee')));
Implementation
CondCol<ValType> ltEqField(Field<ValType> rhs) =>
CondCol.ltEq<ValType>(this, rhs);