Where adds WHERE expressions to the query. See SelectBuilder.Where for more information.
(pred interface{}, args ...interface{})
| 45 | // |
| 46 | // See SelectBuilder.Where for more information. |
| 47 | func (b StatementBuilderType) Where(pred interface{}, args ...interface{}) StatementBuilderType { |
| 48 | return builder.Append(b, "WhereParts", newWherePart(pred, args...)).(StatementBuilderType) |
| 49 | } |
| 50 | |
| 51 | // StatementBuilder is a parent builder for other builders, e.g. SelectBuilder. |
| 52 | var StatementBuilder = StatementBuilderType(builder.EmptyBuilder).PlaceholderFormat(Question) |
nothing calls this directly
no test coverage detected