I have objects A witch has many to many relation ship to object b.
Is it possible to save objects A with it’s B collection in a bulk ‘ I mean not to save B objects one by one then add them to A.
for b in b_objects :
A.b_objs.add(b)
A.save()
Thanks
You could dump your model to json (from http://www.djangosnippets.org/snippets/125/):