You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.3 KiB
Go
89 lines
2.3 KiB
Go
1 year ago
|
// Code generated by ent, DO NOT EDIT.
|
||
|
|
||
|
package ent
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"entgo.io/ent/dialect/sql"
|
||
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
||
|
"entgo.io/ent/schema/field"
|
||
|
"git.noahlan.cn/n-admin/n-admin-server/rpc/core/ent/district"
|
||
|
"git.noahlan.cn/n-admin/n-admin-server/rpc/core/ent/predicate"
|
||
|
)
|
||
|
|
||
|
// DistrictDelete is the builder for deleting a District entity.
|
||
|
type DistrictDelete struct {
|
||
|
config
|
||
|
hooks []Hook
|
||
|
mutation *DistrictMutation
|
||
|
}
|
||
|
|
||
|
// Where appends a list predicates to the DistrictDelete builder.
|
||
|
func (dd *DistrictDelete) Where(ps ...predicate.District) *DistrictDelete {
|
||
|
dd.mutation.Where(ps...)
|
||
|
return dd
|
||
|
}
|
||
|
|
||
|
// Exec executes the deletion query and returns how many vertices were deleted.
|
||
|
func (dd *DistrictDelete) Exec(ctx context.Context) (int, error) {
|
||
|
return withHooks(ctx, dd.sqlExec, dd.mutation, dd.hooks)
|
||
|
}
|
||
|
|
||
|
// ExecX is like Exec, but panics if an error occurs.
|
||
|
func (dd *DistrictDelete) ExecX(ctx context.Context) int {
|
||
|
n, err := dd.Exec(ctx)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
return n
|
||
|
}
|
||
|
|
||
|
func (dd *DistrictDelete) sqlExec(ctx context.Context) (int, error) {
|
||
|
_spec := sqlgraph.NewDeleteSpec(district.Table, sqlgraph.NewFieldSpec(district.FieldID, field.TypeInt64))
|
||
|
if ps := dd.mutation.predicates; len(ps) > 0 {
|
||
|
_spec.Predicate = func(selector *sql.Selector) {
|
||
|
for i := range ps {
|
||
|
ps[i](selector)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
affected, err := sqlgraph.DeleteNodes(ctx, dd.driver, _spec)
|
||
|
if err != nil && sqlgraph.IsConstraintError(err) {
|
||
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
||
|
}
|
||
|
dd.mutation.done = true
|
||
|
return affected, err
|
||
|
}
|
||
|
|
||
|
// DistrictDeleteOne is the builder for deleting a single District entity.
|
||
|
type DistrictDeleteOne struct {
|
||
|
dd *DistrictDelete
|
||
|
}
|
||
|
|
||
|
// Where appends a list predicates to the DistrictDelete builder.
|
||
|
func (ddo *DistrictDeleteOne) Where(ps ...predicate.District) *DistrictDeleteOne {
|
||
|
ddo.dd.mutation.Where(ps...)
|
||
|
return ddo
|
||
|
}
|
||
|
|
||
|
// Exec executes the deletion query.
|
||
|
func (ddo *DistrictDeleteOne) Exec(ctx context.Context) error {
|
||
|
n, err := ddo.dd.Exec(ctx)
|
||
|
switch {
|
||
|
case err != nil:
|
||
|
return err
|
||
|
case n == 0:
|
||
|
return &NotFoundError{district.Label}
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// ExecX is like Exec, but panics if an error occurs.
|
||
|
func (ddo *DistrictDeleteOne) ExecX(ctx context.Context) {
|
||
|
if err := ddo.Exec(ctx); err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
}
|