Description applies equality check predicate on the "description" field. It's identical to DescriptionEQ.
(v string)
| 63 | |
| 64 | // Description applies equality check predicate on the "description" field. It's identical to DescriptionEQ. |
| 65 | func Description(v string) predicate.Project { |
| 66 | return predicate.Project(sql.FieldEQ(FieldDescription, v)) |
| 67 | } |
| 68 | |
| 69 | // CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ. |
| 70 | func CreatedAt(v time.Time) predicate.Project { |