IDNotIn applies the NotIn predicate on the ID field.
(ids ...int)
| 33 | |
| 34 | // IDNotIn applies the NotIn predicate on the ID field. |
| 35 | func IDNotIn(ids ...int) predicate.Node { |
| 36 | return predicate.Node(sql.FieldNotIn(FieldID, ids...)) |
| 37 | } |
| 38 | |
| 39 | // IDGT applies the GT predicate on the ID field. |
| 40 | func IDGT(id int) predicate.Node { |