Not static method

Expr Not(
  1. Expr exp
)

Implementation

static Expr Not(Expr exp) {
  return new UnaryExpression("NOT", exp)..fieldType = dbType.Bool;
}