mirror of
https://github.com/chaitin/MonkeyCode.git
synced 2026-02-03 15:23:30 +08:00
89 lines
2.2 KiB
Go
89 lines
2.2 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package db
|
|
|
|
import (
|
|
"context"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"entgo.io/ent/schema/field"
|
|
"github.com/chaitin/MonkeyCode/backend/db/predicate"
|
|
"github.com/chaitin/MonkeyCode/backend/db/record"
|
|
)
|
|
|
|
// RecordDelete is the builder for deleting a Record entity.
|
|
type RecordDelete struct {
|
|
config
|
|
hooks []Hook
|
|
mutation *RecordMutation
|
|
}
|
|
|
|
// Where appends a list predicates to the RecordDelete builder.
|
|
func (rd *RecordDelete) Where(ps ...predicate.Record) *RecordDelete {
|
|
rd.mutation.Where(ps...)
|
|
return rd
|
|
}
|
|
|
|
// Exec executes the deletion query and returns how many vertices were deleted.
|
|
func (rd *RecordDelete) Exec(ctx context.Context) (int, error) {
|
|
return withHooks(ctx, rd.sqlExec, rd.mutation, rd.hooks)
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (rd *RecordDelete) ExecX(ctx context.Context) int {
|
|
n, err := rd.Exec(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return n
|
|
}
|
|
|
|
func (rd *RecordDelete) sqlExec(ctx context.Context) (int, error) {
|
|
_spec := sqlgraph.NewDeleteSpec(record.Table, sqlgraph.NewFieldSpec(record.FieldID, field.TypeUUID))
|
|
if ps := rd.mutation.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
affected, err := sqlgraph.DeleteNodes(ctx, rd.driver, _spec)
|
|
if err != nil && sqlgraph.IsConstraintError(err) {
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
}
|
|
rd.mutation.done = true
|
|
return affected, err
|
|
}
|
|
|
|
// RecordDeleteOne is the builder for deleting a single Record entity.
|
|
type RecordDeleteOne struct {
|
|
rd *RecordDelete
|
|
}
|
|
|
|
// Where appends a list predicates to the RecordDelete builder.
|
|
func (rdo *RecordDeleteOne) Where(ps ...predicate.Record) *RecordDeleteOne {
|
|
rdo.rd.mutation.Where(ps...)
|
|
return rdo
|
|
}
|
|
|
|
// Exec executes the deletion query.
|
|
func (rdo *RecordDeleteOne) Exec(ctx context.Context) error {
|
|
n, err := rdo.rd.Exec(ctx)
|
|
switch {
|
|
case err != nil:
|
|
return err
|
|
case n == 0:
|
|
return &NotFoundError{record.Label}
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (rdo *RecordDeleteOne) ExecX(ctx context.Context) {
|
|
if err := rdo.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|