mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
57 lines
1.3 KiB
Go
57 lines
1.3 KiB
Go
// Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
|
// This source code is licensed under the Apache 2.0 license found
|
|
// in the LICENSE file in the root directory of this source tree.
|
|
|
|
// Code generated by entc, DO NOT EDIT.
|
|
|
|
package entv2
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/facebookincubator/ent/dialect/sql/sqlgraph"
|
|
"github.com/facebookincubator/ent/entc/integration/migrate/entv2/pet"
|
|
"github.com/facebookincubator/ent/schema/field"
|
|
)
|
|
|
|
// PetCreate is the builder for creating a Pet entity.
|
|
type PetCreate struct {
|
|
config
|
|
}
|
|
|
|
// Save creates the Pet in the database.
|
|
func (pc *PetCreate) Save(ctx context.Context) (*Pet, error) {
|
|
return pc.sqlSave(ctx)
|
|
}
|
|
|
|
// SaveX calls Save and panics if Save returns an error.
|
|
func (pc *PetCreate) SaveX(ctx context.Context) *Pet {
|
|
v, err := pc.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
func (pc *PetCreate) sqlSave(ctx context.Context) (*Pet, error) {
|
|
var (
|
|
pe = &Pet{config: pc.config}
|
|
_spec = &sqlgraph.CreateSpec{
|
|
Table: pet.Table,
|
|
ID: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: pet.FieldID,
|
|
},
|
|
}
|
|
)
|
|
if err := sqlgraph.CreateNode(ctx, pc.driver, _spec); err != nil {
|
|
if cerr, ok := isSQLConstraintError(err); ok {
|
|
err = cerr
|
|
}
|
|
return nil, err
|
|
}
|
|
id := _spec.ID.Value.(int64)
|
|
pe.ID = int(id)
|
|
return pe, nil
|
|
}
|