ne method
Returns a "not equal to" condition
FindStatement find = FindStatement();
Field<int> age = Field<int>('age');
find.where(age.ne(20));
Implementation
Cond<ValType> ne(ValType value) => Cond.ne<ValType>(this, value);
Returns a "not equal to" condition
FindStatement find = FindStatement();
Field<int> age = Field<int>('age');
find.where(age.ne(20));
Cond<ValType> ne(ValType value) => Cond.ne<ValType>(this, value);