NotEqual method

Expr NotEqual(
  1. Object o
)

Implementation

Expr NotEqual(Object o) {
  if (o is Expr) {
    return new BinaryExpression(this, "<>", o)..fieldType = dbType.Bool;
  }
  return NotEqual(new ValueExpr(o, this.fieldType));
}