IDLTE applies the LTE predicate on the ID field.
(id uuid.UUID)
| 54 | |
| 55 | // IDLTE applies the LTE predicate on the ID field. |
| 56 | func IDLTE(id uuid.UUID) predicate.CASBackend { |
| 57 | return predicate.CASBackend(sql.FieldLTE(FieldID, id)) |
| 58 | } |
| 59 | |
| 60 | // Location applies equality check predicate on the "location" field. It's identical to LocationEQ. |
| 61 | func Location(v string) predicate.CASBackend { |
nothing calls this directly
no test coverage detected