Create returns a builder for creating a CASMapping entity.
()
| 885 | |
| 886 | // Create returns a builder for creating a CASMapping entity. |
| 887 | func (c *CASMappingClient) Create() *CASMappingCreate { |
| 888 | mutation := newCASMappingMutation(c.config, OpCreate) |
| 889 | return &CASMappingCreate{config: c.config, hooks: c.Hooks(), mutation: mutation} |
| 890 | } |
| 891 | |
| 892 | // CreateBulk returns a builder for creating a bulk of CASMapping entities. |
| 893 | func (c *CASMappingClient) CreateBulk(builders ...*CASMappingCreate) *CASMappingCreateBulk { |
no test coverage detected