我有 2 个模型,
Bacon
并且Eggs
都必须ForeignKey
建模Spam
。
我需要找出与 无关的培根Eggs
,目前我正在按以下方式进行操作:
objs = Bacon.objects.select_related.filter(somefilter=value)
for obj in objs:
if obj.spam.eggsspam.count():
continue
do_something()
我确定必须有更优化的方法?