Using Django bulk_create objects in foreign keys?
I was reading up on Django bulk_create and a few of its "flaws": " This has a number of caveats though: 1. The model's save() method will not be called, and the pre_save and post_save signals will not be sent. 2. It does not work with child models in a multi-table inheritance scenario. 3. If the model's primary key is an AutoField it does not retrieve and set the primary key attribute, as save() does. " I didn't fully understand it. So if I have a list of objects, pass it into bulk_create: objList = [a, b, c,] #none are saved model.objects.bulk_create(objList) Could I still use these objects