neField method

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

Returns a "not equal to" condition

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

Implementation

CondCol<ValType> neField(Field<ValType> rhs) =>
    CondCol.ne<ValType>(this, rhs);