ne method

Cond<ValType> ne(
  1. ValType value
)

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