I have a lot of objects to save in database, and so I want to create Model instances with that.
With django, I can create all the models instances, with MyMode
MyMode
The easiest way is to use the create Manager method, which creates and saves the object in a single step.
create
for item in items: MyModel.objects.create(name=item.name)