php小編魚仔將為您介紹如何在 Gorm 中使用 Raw() 進行 Preload()。 Gorm是一個強大的Go語言ORM庫,提供了許多便捷的方法來進行資料庫操作。在某些情況下,我們可能需要使用原生的SQL語句來查詢,同時也想使用Preload()方法來預先載入相關的資料。透過使用Raw()方法,我們可以在Gorm中結合Preload()來實現這一需求。接下來,我們將詳細講解具體的操作步驟,幫助您更能理解並應用這個技巧。
之前在我的專案中,我需要做一些複雜的查詢,所以我使用了 Raw()
。查詢如下所示:
SELECT tbl1.id, tbl1.some_name, tbl5.some_status, tbl1.some_tbl2_id, tbl1.type_id, tbl1.created_at, tbl5.name FROM table1 tbl1 JOIN table2 tbl2 ON tbl1.some_tbl2_id = tbl2.id JOIN table3 tbl3 ON tbl3.edge_device_info_id = tbl2.id JOIN table4 tbl4 ON tbl4.id = tbl3.account_id LEFT JOIN table5 tbl5 ON tbl5.tbl1_id = tbl1.id WHERE tbl5.tbl1_id IS NULL OR tbl5.updated_at = ( SELECT MAX(updated_at) FROM table5 WHERE tbl1_id = tbl1.id ) ORDER BY tbl1.created_at ASC;
我不太確定我是否可以使用 gorm
中的內容/方法完全做到這一點,所以我只是使用我更熟悉的簡單查詢。現在,我想取得與 tbl1.type_id
關聯的記錄。我嘗試在Raw()
之前添加Preload()
但這似乎不起作用,因為檢查我用來存儲查詢結果的結構數組的內容似乎沒有填充Type
。
更新:
環顧四周後,我找到了一種將上面的 Raw()
查詢轉換為 gorm
的方法連結的方法。它看起來像這樣:
Model(models.ActuatorDeviceInfo{}).Preload("ActuatorDeviceInfo.Type"). Select("actuator_device_infos.*, actuator_device_infos.id, at.*"). Joins("JOIN edge_device_infos edi ON actuator_device_infos.parent_edge_device_id = edi.id"). Joins("JOIN user_owned_edge_devices ae ON ae.edge_device_info_id = edi.id"). Joins("JOIN accounts acc ON acc.id = ae.account_id"). Joins("JOIN actuator_types at ON at.id = actuator_device_infos.type_id"). Joins("LEFT JOIN actuator_updates au ON au.actuator_device_info_id = actuator_device_infos.id"). Where("au.actuator_device_info_id IS NULL OR au.updated_at = (?)", helpers.GetDB().Model(&models.ActuatorUpdate{}).Select("MAX(updated_at)"). Where("au.actuator_device_info_id = actuator_device_infos.id")). Order("actuator_device_infos.created_at DESC"). Scan(&actuator_device_infos)
它的工作方式就像之前的Raw()
查詢一樣,但它仍然缺少一些東西,這就是獲取關聯表到table1 的方法(它是方法鏈接上的actuator_device_infos,有點懶惰仍然清理新代碼)。即使我在查詢建置方法之前新增 Preload()
,它似乎也不會影響結果記錄。我需要使用Model()
進行方法鏈接,並且缺少它會產生錯誤,因為Model()
中的解析表將用於最終查詢的FROM
部分,因此gorm
應該有所了解我想要預先載入的東西存在。我預先載入的是 actuator_types
,它已經有一個 Joins()
,如上面的程式碼所示。
感謝@Trock的評論,我終於找到了最後一塊拼圖。看來我只需要在方法鏈的末尾使用 Find()
,這樣 Preload()
就可以工作。最終的程式碼看起來就像我在問題上的程式碼,但我用 Find()
取代了 Scan()
。我嘗試對 Raw()
程式碼執行相同的操作,並且效果也很好。 gorm
應該要提到該機制。
以上是如何在 Gorm 中使用 Raw() 進行 Preload() ?的詳細內容。更多資訊請關注PHP中文網其他相關文章!