Equal method

Expr Equal(
  1. Object o
)

Implementation

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