eq method

Cond<ValType> eq(
  1. ValType value
)

Returns an "is equal to" condition

FindStatement find = FindStatement();
Field<int> author = Field<int>('age');
find.where(age.eq(20));

Implementation

Cond<ValType> eq(ValType value) => Cond.eq<ValType>(this, value);