gtField method

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

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