eqField method

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

Returns an "is equal to" condition

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

Implementation

CondCol<ValType> eqField(Field<ValType> rhs) =>
    CondCol.eq<ValType>(this, rhs);