How does DRF's `ModelSerializer` handle the `create()` method by default?
-
A
It calls Model.objects.create() with the validated data
-
B
It raises NotImplementedError requiring manual implementation
-
C
It uses Django's form save() method
-
D
It calls the model's __init__ and then save()