protected virtual bool CompareUpdate(UpdateCommand x, UpdateCommand y) { return((this.Compare(x.Table, y.Table) && this.Compare(x.Where, y.Where)) && this.CompareColumnAssignments(x.Assignments, y.Assignments)); }
protected override Expression VisitUpdate(UpdateCommand update) { return(this.BuildExecuteCommand(update)); }