gtEqField method

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

Returns a "greater than equal to" condition

FindStatement find = FindStatement();
Field<int> age = Field<int>('age');
find.where(age.gtEqCol(col('age', 'employee')));

Implementation

CondCol<ValType> gtEqField(Field<ValType> rhs) =>
    CondCol.gtEq<ValType>(this, rhs);