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