IDLT applies the LT predicate on the ID field.
(id uuid.UUID)
| 48 | |
| 49 | // IDLT applies the LT predicate on the ID field. |
| 50 | func IDLT(id uuid.UUID) predicate.CASMapping { |
| 51 | return predicate.CASMapping(sql.FieldLT(FieldID, id)) |
| 52 | } |
| 53 | |
| 54 | // IDLTE applies the LTE predicate on the ID field. |
| 55 | func IDLTE(id uuid.UUID) predicate.CASMapping { |
nothing calls this directly
no test coverage detected