NotInTable method

Expr NotInTable(
  1. DbTable table
)

Implementation

Expr NotInTable(DbTable table) {
  return new InExpression.Table(this, false, table)..fieldType = dbType.Bool;
}