1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
// Copyright 2019-present Facebook Inc. 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 ent
import (
"fmt"
"strings"
"github.com/facebook/ent/dialect/sql"
"github.com/facebook/ent/examples/edgeindex/ent/city"
)
// City is the model entity for the City schema.
type City struct {
config `json:"-"`
// ID of the ent.
ID int `json:"id,omitempty"`
// Name holds the value of the "name" field.
Name string `json:"name,omitempty"`
// Edges holds the relations/edges for other nodes in the graph.
// The values are being populated by the CityQuery when eager-loading is set.
Edges CityEdges `json:"edges"`
}
// CityEdges holds the relations/edges for other nodes in the graph.
type CityEdges struct {
// Streets holds the value of the streets edge.
Streets []*Street
// loadedTypes holds the information for reporting if a
// type was loaded (or requested) in eager-loading or not.
loadedTypes [1]bool
}
// StreetsOrErr returns the Streets value or an error if the edge
// was not loaded in eager-loading.
func (e CityEdges) StreetsOrErr() ([]*Street, error) {
if e.loadedTypes[0] {
return e.Streets, nil
}
return nil, &NotLoadedError{edge: "streets"}
}
// scanValues returns the types for scanning values from sql.Rows.
func (*City) scanValues(columns []string) ([]interface{}, error) {
values := make([]interface{}, len(columns))
for i := range columns {
switch columns[i] {
case city.FieldID:
values[i] = &sql.NullInt64{}
case city.FieldName:
values[i] = &sql.NullString{}
default:
return nil, fmt.Errorf("unexpected column %q for type City", columns[i])
}
}
return values, nil
}
// assignValues assigns the values that were returned from sql.Rows (after scanning)
// to the City fields.
func (c *City) assignValues(columns []string, values []interface{}) error {
if m, n := len(values), len(columns); m < n {
return fmt.Errorf("mismatch number of scan values: %d != %d", m, n)
}
for i := range columns {
switch columns[i] {
case city.FieldID:
value, ok := values[i].(*sql.NullInt64)
if !ok {
return fmt.Errorf("unexpected type %T for field id", value)
}
c.ID = int(value.Int64)
case city.FieldName:
if value, ok := values[i].(*sql.NullString); !ok {
return fmt.Errorf("unexpected type %T for field name", values[i])
} else if value.Valid {
c.Name = value.String
}
}
}
return nil
}
// QueryStreets queries the "streets" edge of the City entity.
func (c *City) QueryStreets() *StreetQuery {
return (&CityClient{config: c.config}).QueryStreets(c)
}
// Update returns a builder for updating this City.
// Note that you need to call City.Unwrap() before calling this method if this City
// was returned from a transaction, and the transaction was committed or rolled back.
func (c *City) Update() *CityUpdateOne {
return (&CityClient{config: c.config}).UpdateOne(c)
}
// Unwrap unwraps the City entity that was returned from a transaction after it was closed,
// so that all future queries will be executed through the driver which created the transaction.
func (c *City) Unwrap() *City {
tx, ok := c.config.driver.(*txDriver)
if !ok {
panic("ent: City is not a transactional entity")
}
c.config.driver = tx.drv
return c
}
// String implements the fmt.Stringer.
func (c *City) String() string {
var builder strings.Builder
builder.WriteString("City(")
builder.WriteString(fmt.Sprintf("id=%v", c.ID))
builder.WriteString(", name=")
builder.WriteString(c.Name)
builder.WriteByte(')')
return builder.String()
}
// Cities is a parsable slice of City.
type Cities []*City
func (c Cities) config(cfg config) {
for _i := range c {
c[_i].config = cfg
}
}
|