Files
polaris/ent/epidodes_delete.go
2024-06-22 17:15:24 +08:00

89 lines
2.2 KiB
Go

// Code generated by ent, DO NOT EDIT.
package ent
import (
"context"
"polaris/ent/epidodes"
"polaris/ent/predicate"
"entgo.io/ent/dialect/sql"
"entgo.io/ent/dialect/sql/sqlgraph"
"entgo.io/ent/schema/field"
)
// EpidodesDelete is the builder for deleting a Epidodes entity.
type EpidodesDelete struct {
config
hooks []Hook
mutation *EpidodesMutation
}
// Where appends a list predicates to the EpidodesDelete builder.
func (ed *EpidodesDelete) Where(ps ...predicate.Epidodes) *EpidodesDelete {
ed.mutation.Where(ps...)
return ed
}
// Exec executes the deletion query and returns how many vertices were deleted.
func (ed *EpidodesDelete) Exec(ctx context.Context) (int, error) {
return withHooks(ctx, ed.sqlExec, ed.mutation, ed.hooks)
}
// ExecX is like Exec, but panics if an error occurs.
func (ed *EpidodesDelete) ExecX(ctx context.Context) int {
n, err := ed.Exec(ctx)
if err != nil {
panic(err)
}
return n
}
func (ed *EpidodesDelete) sqlExec(ctx context.Context) (int, error) {
_spec := sqlgraph.NewDeleteSpec(epidodes.Table, sqlgraph.NewFieldSpec(epidodes.FieldID, field.TypeInt))
if ps := ed.mutation.predicates; len(ps) > 0 {
_spec.Predicate = func(selector *sql.Selector) {
for i := range ps {
ps[i](selector)
}
}
}
affected, err := sqlgraph.DeleteNodes(ctx, ed.driver, _spec)
if err != nil && sqlgraph.IsConstraintError(err) {
err = &ConstraintError{msg: err.Error(), wrap: err}
}
ed.mutation.done = true
return affected, err
}
// EpidodesDeleteOne is the builder for deleting a single Epidodes entity.
type EpidodesDeleteOne struct {
ed *EpidodesDelete
}
// Where appends a list predicates to the EpidodesDelete builder.
func (edo *EpidodesDeleteOne) Where(ps ...predicate.Epidodes) *EpidodesDeleteOne {
edo.ed.mutation.Where(ps...)
return edo
}
// Exec executes the deletion query.
func (edo *EpidodesDeleteOne) Exec(ctx context.Context) error {
n, err := edo.ed.Exec(ctx)
switch {
case err != nil:
return err
case n == 0:
return &NotFoundError{epidodes.Label}
default:
return nil
}
}
// ExecX is like Exec, but panics if an error occurs.
func (edo *EpidodesDeleteOne) ExecX(ctx context.Context) {
if err := edo.Exec(ctx); err != nil {
panic(err)
}
}