gtField method
Returns a "greater than" condition
FindStatement find = FindStatement();
Field<int> age = Field<int>('age');
find.where(age.gtCol(col('age', 'employee')));
Implementation
CondCol<ValType> gtField(Field<ValType> rhs) =>
CondCol.gt<ValType>(this, rhs);