DeleteOne returns a builder for deleting the given entity.
(f *File)
| 890 | |
| 891 | // DeleteOne returns a builder for deleting the given entity. |
| 892 | func (c *FileClient) DeleteOne(f *File) *FileDeleteOne { |
| 893 | return c.DeleteOneID(f.ID) |
| 894 | } |
| 895 | |
| 896 | // DeleteOneID returns a builder for deleting the given entity by its id. |
| 897 | func (c *FileClient) DeleteOneID(id int) *FileDeleteOne { |