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