ServerNotIn applies the NotIn predicate on the "server" field.
(vs ...string)
| 348 | |
| 349 | // ServerNotIn applies the NotIn predicate on the "server" field. |
| 350 | func ServerNotIn(vs ...string) predicate.Node { |
| 351 | return predicate.Node(sql.FieldNotIn(FieldServer, vs...)) |
| 352 | } |
| 353 | |
| 354 | // ServerGT applies the GT predicate on the "server" field. |
| 355 | func ServerGT(v string) predicate.Node { |