我的应用程序中有2个模型 -
在models / parent.py中我有 -
from django.db import models
class Parent(models.Model):
class Meta:
db_table = "parent_table"
start_date = models.DateField()
end_date = models.DateField()
在models / child.py中我有 -
from django.db import models
from models.parent import Parent
class Child(models.Model):
class Meta:
db_table = "child_table"
some_ref = models.ForeignField(Parent)
我们可以使用父表引用作为 -
单独插入子表self.child_set.create(**args)
有没有办法可以批量插入相关表格,正常bulk_create