user.go 4.4 KB

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