where method

DeleteStatement<Tbl> where(
  1. Expression<bool, Tbl> predicate
)

Implementation

DeleteStatement<Tbl> where(Expression<bool, Tbl> predicate) {
  whereNode = predicate.node;
  return this;
}