Exec executes the query.
(ctx context.Context)
| 323 | |
| 324 | // Exec executes the query. |
| 325 | func (uc *UserCreate) Exec(ctx context.Context) error { |
| 326 | _, err := uc.Save(ctx) |
| 327 | return err |
| 328 | } |
| 329 | |
| 330 | // ExecX is like Exec, but panics if an error occurs. |
| 331 | func (uc *UserCreate) ExecX(ctx context.Context) { |