mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
Summary: Pull Request resolved: https://github.com/facebookexternal/fbc/pull/1338 Pull Request resolved: https://github.com/facebookincubator/ent/pull/14 Reviewed By: alexsn Differential Revision: D16890825 fbshipit-source-id: 656baaa73f5debab08c849b6b9639caeec2a8ef1
62 lines
1.5 KiB
Go
62 lines
1.5 KiB
Go
// Code generated (@generated) by entc, DO NOT EDIT.
|
|
|
|
package entv2
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/facebookincubator/ent/entc/integration/migrate/entv2/pet"
|
|
"github.com/facebookincubator/ent/entc/integration/migrate/entv2/predicate"
|
|
|
|
"github.com/facebookincubator/ent/dialect/sql"
|
|
)
|
|
|
|
// PetDelete is the builder for deleting a Pet entity.
|
|
type PetDelete struct {
|
|
config
|
|
predicates []predicate.Pet
|
|
}
|
|
|
|
// Where adds a new predicate for the builder.
|
|
func (pd *PetDelete) Where(ps ...predicate.Pet) *PetDelete {
|
|
pd.predicates = append(pd.predicates, ps...)
|
|
return pd
|
|
}
|
|
|
|
// Exec executes the deletion query.
|
|
func (pd *PetDelete) Exec(ctx context.Context) error {
|
|
return pd.sqlExec(ctx)
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (pd *PetDelete) ExecX(ctx context.Context) {
|
|
if err := pd.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
func (pd *PetDelete) sqlExec(ctx context.Context) error {
|
|
var res sql.Result
|
|
selector := sql.Select().From(sql.Table(pet.Table))
|
|
for _, p := range pd.predicates {
|
|
p(selector)
|
|
}
|
|
query, args := sql.Delete(pet.Table).FromSelect(selector).Query()
|
|
return pd.driver.Exec(ctx, query, args, &res)
|
|
}
|
|
|
|
// PetDeleteOne is the builder for deleting a single Pet entity.
|
|
type PetDeleteOne struct {
|
|
pd *PetDelete
|
|
}
|
|
|
|
// Exec executes the deletion query.
|
|
func (pdo *PetDeleteOne) Exec(ctx context.Context) error {
|
|
return pdo.pd.Exec(ctx)
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (pdo *PetDeleteOne) ExecX(ctx context.Context) {
|
|
pdo.pd.ExecX(ctx)
|
|
}
|