Exec executes the query.
(ctx context.Context)
| 233 | |
| 234 | // Exec executes the query. |
| 235 | func (nvc *NodeVersionCreate) Exec(ctx context.Context) error { |
| 236 | _, err := nvc.Save(ctx) |
| 237 | return err |
| 238 | } |
| 239 | |
| 240 | // ExecX is like Exec, but panics if an error occurs. |
| 241 | func (nvc *NodeVersionCreate) ExecX(ctx context.Context) { |