NotIn method

Expr NotIn(
  1. AbsSelect select
)

Implementation

Expr NotIn(AbsSelect select) {
  return new InExpression.Select(this, false, select)..fieldType = dbType.Bool;
}