Should the save method be called after every create method or does calling the create method automatically call the save method?
If the save method is called automatically after creating an object then what would be a good use-case for the save method?
Thanks.
No
save()does not need to be called aftercreate().from the docs for create:
its to be used in place of creating an object the normal way then saving with object.save()