eqF method

CondCol<ValType> eqF(
  1. String name, {
  2. String? table,
})

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> eqF(String name, {String? table}) =>
    CondCol.eq<ValType>(this, Field<ValType>.inTable(table, name));