StatusNotIn applies the NotIn predicate on the "status" field.
(vs ...Status)
| 243 | |
| 244 | // StatusNotIn applies the NotIn predicate on the "status" field. |
| 245 | func StatusNotIn(vs ...Status) predicate.Node { |
| 246 | return predicate.Node(sql.FieldNotIn(FieldStatus, vs...)) |
| 247 | } |
| 248 | |
| 249 | // NameEQ applies the EQ predicate on the "name" field. |
| 250 | func NameEQ(v string) predicate.Node { |