RunWith sets the RunWith field for any child builders.
(runner BaseRunner)
| 38 | |
| 39 | // RunWith sets the RunWith field for any child builders. |
| 40 | func (b StatementBuilderType) RunWith(runner BaseRunner) StatementBuilderType { |
| 41 | return setRunWith(b, runner).(StatementBuilderType) |
| 42 | } |
| 43 | |
| 44 | // Where adds WHERE expressions to the query. |
| 45 | // |
nothing calls this directly
no test coverage detected