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

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

如何使用 GORM 從多對(duì)多關(guān)系相關(guān)的其他表中過(guò)濾包含實(shí)體的表?

如何使用 GORM 從多對(duì)多關(guān)系相關(guān)的其他表中過(guò)濾包含實(shí)體的表?

Go
不負(fù)相思意 2023-07-31 16:10:49
我有 Product 表,它使用多對(duì)多關(guān)系與其他兩個(gè)表 Category & AttributeValue 連接。我使用 GORM 作為 ORM。這些表的 go 結(jié)構(gòu)如下所示。type Product struct {    ProductID               int                  `gorm:"column:product_id;primary_key" json:"product_id"`    Name                    string               `gorm:"column:name" json:"name"`    Categories              []Category           `gorm:"many2many:product_category;foreignkey:product_id;association_foreignkey:category_id;association_jointable_foreignkey:category_id;jointable_foreignkey:product_id;"`    AttributeValues         []AttributeValue     `gorm:"many2many:product_attribute;foreignkey:product_id;association_foreignkey:attribute_value_id;association_jointable_foreignkey:attribute_value_id;jointable_foreignkey:product_id;"`}type Category struct {    CategoryID   int         `gorm:"column:category_id;primary_key" json:"category_id"`    Name         string      `gorm:"column:name" json:"name"`    Products     []Product   `gorm:"many2many:product_category;foreignkey:category_id;association_foreignkey:product_id;association_jointable_foreignkey:product_id;jointable_foreignkey:category_id;"`}type AttributeValue struct {    AttributeValueID int    `gorm:"column:attribute_value_id;primary_key" json:"attribute_value_id"`    AttributeID      int    `gorm:"column:attribute_id" json:"attribute_id"`    Value            string `gorm:"column:value" json:"value"`    Products     []Product   `gorm:"many2many:product_attribute;foreignkey:attribute_value_id;association_foreignkey:product_id;association_jointable_foreignkey:product_id;jointable_foreignkey:attribute_value_id;"`}如果我想按類別查詢產(chǎn)品表,我可以像下面這樣做,它將返回類別 ID 為 3 的類別中的所有產(chǎn)品。cat := model.Category{}s.db.First(&cat, "category_id = ?", 3)products := []*model.Product{}s.db.Model(&cat).Related(&products, "Products")如果我想按類別和屬性值查詢產(chǎn)品表,我該怎么做?假設(shè)我想查找屬于category_id 3 且AttributeValue 為attribute_value_id 2 的類別的所有產(chǎn)品?
查看完整描述

1 回答

?
炎炎設(shè)計(jì)

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

我找到了一些根據(jù)類別和 AttributeValue 查詢產(chǎn)品的方法。我得到的最好的方法就像下面這樣


    products := []*model.Product{}


    s.db.Joins("INNER JOIN product_attribute ON product_attribute.product_id = " +

                    "product.product_id AND product_attribute.attribute_value_id in (?)", 2).

    Joins("INNER JOIN product_category ON product_category.product_id = " +

                    "product.product_id AND product_category.category_id in (?)", 3).

    Find(&products)

執(zhí)行此操作后,產(chǎn)品切片將填充屬于類別 ID 為 3 且 AttributeValue 為 attribute_value_id 2 的所有產(chǎn)品。如果我們需要在多個(gè)類別和屬性值中查找產(chǎn)品,我們可以傳遞字符串切片。


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

添加回答

舉報(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)