Where method

UpdateStatement Where(
  1. Expr cond
)

Implementation

UpdateStatement Where(Expr cond) {
  this._cond = cond;
  return this;
}