Location applies equality check predicate on the "location" field. It's identical to LocationEQ.
(v string)
| 59 | |
| 60 | // Location applies equality check predicate on the "location" field. It's identical to LocationEQ. |
| 61 | func Location(v string) predicate.CASBackend { |
| 62 | return predicate.CASBackend(sql.FieldEQ(FieldLocation, v)) |
| 63 | } |
| 64 | |
| 65 | // Name applies equality check predicate on the "name" field. It's identical to NameEQ. |
| 66 | func Name(v string) predicate.CASBackend { |
nothing calls this directly
no test coverage detected