第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

Django - 由于外鍵模型關(guān)系,如何排除查詢集中的實(shí)例

Django - 由于外鍵模型關(guān)系,如何排除查詢集中的實(shí)例

守著一只汪 2023-03-16 11:13:25
如果有任何項(xiàng)目實(shí)例不在某個(gè)項(xiàng)目列表中,我試圖過濾掉 Quotation 模型中的實(shí)例。從 ProjectItem 模型中檢索特定的項(xiàng)目列表。模型結(jié)構(gòu)如下,我會(huì)在代碼后面詳細(xì)解釋。models.pyclass SalesProject(models.Model):    sales_project_id = models.AutoField(primary_key=True)    sales_project_name = models.CharField(max_length=100)class ProjectItem(models.Model):    project_item_id = models.AutoField(primary_key=True)    project = models.ForeignKey('SalesProject', related_name='items', on_delete=models.CASCADE)    item = models.ForeignKey('Item', on_delete=models.CASCADE)    remarks = models.TextField(max_length=1000)class Quotation(models.Model):    quotation_id = models.AutoField(primary_key=True)    salesProject = models.ForeignKey(        'SalesProject', related_name='quotations', on_delete=models.CASCADE, null=True, blank=True)    details = models.TextField(max_length=1000, blank=True, null=True)class QuotationItem(models.Model):    quotation_item_id = models.AutoField(primary_key=True)    item = models.ForeignKey('Item', on_delete=models.CASCADE, null=True, blank=True)    quotation = models.ForeignKey('Quotation', on_delete=models.CASCADE, related_name='items', null=True, blank=True)    remarks = models.TextField(max_length=1000)class Item(models.Model):    item_id = models.AutoField(primary_key=True)    item_code = models.CharField(max_length=500, null=True, blank=True)    item_description = models.TextField(max_length=1000, null=True, blank=True)首先,我將通過查詢當(dāng)前的 SalesProject 來(lái)獲取 Item 實(shí)例的列表。(其中項(xiàng)目 = SalesProject 實(shí)例)items = ProjectItem.objects.filter(project=project).values_list('item', flat=True)基本上,此項(xiàng)目列表中的項(xiàng)目實(shí)例是各種“允許的項(xiàng)目”。我想要返回的是僅包含此列表中的 Item 實(shí)例的所有 Quotation 實(shí)例(或排除包含此列表之外的 Item 實(shí)例的任何 Quotation 實(shí)例)。Quotation 與 Item 的關(guān)系是通過 QuotationItem 模型實(shí)現(xiàn)的。有什么辦法嗎?感謝大家的幫助,請(qǐng)指導(dǎo)我,如果信息不足請(qǐng)告訴我。
查看完整描述

1 回答

?
慕絲7291255

TA貢獻(xiàn)1859條經(jīng)驗(yàn) 獲得超6個(gè)贊

您可以過濾:

Quotation.objects.filter(items__item__projectitem__project=project)

您可以使用 來(lái).distinct()確保每個(gè)Quotation對(duì)象只返回一次:

Quotation.objects.filter(items__item__projectitem__project=project).distinct()

如果您希望Quotations引用project,您可以使用.exclude(…),或者更直接地計(jì)算Projects:

from django.db.models import Count, Q


Quotation.objects.annotate(

    nproject=Count('items__item__projectitem__project', distinct=True),

    nproject_project=Count(

        'items__item__projectitem__project',

        distinct=True,

        filter=Q(items__item__projectitem__project=project)

    ),

).filter(

    nproject_project=1,

    nproject=1

).distinct()

注意:您的QuotationItem模型基本上就像[Django-doc]的直通模型,您可能想添加一個(gè)帶有此模型的參數(shù) [Django-doc]。這使得使用 Django ORM 查詢此類關(guān)系更加方便。ManyToManyFieldManyToManyFieldthrough=…


查看完整回答
反對(duì) 回復(fù) 2023-03-16
  • 1 回答
  • 0 關(guān)注
  • 125 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)