2013-10-18 101 views
1

我有一個類Image具有以下GenericRelation跨Django的複雜查詢反向泛型關係:可能嗎?

properties = models.GenericRelation(Property) 

我試圖讓具有特定屬性的所有圖像,所以我這樣做:

Image.objects.filter(properties__type = "foo", properties__user = request.user) 

但是這將導致以下錯誤:

DatabaseError: operator does not exist: integer = text 
LINE 1: ...perties_property" ON ("myapp_image"."id" = "propert... 
                 ^
HINT: No operator matches the given name and argument type(s). You might need to add explicit type casts. 

是不是可以這樣查詢?我可以做什麼作爲替代方案?

+0

你給了錯誤的和平;我們可以在這種情況下給你一個平靜的答案,但不知道這是否奏效;)你也應該向我們展示2個模型 – 2013-10-18 07:25:09

回答

0

如果您需要在通用的關係做非常複雜的查詢,那我寧願建議你自己編寫SQL和使用原始查詢相當。所以我想我會說原始查詢是一種選擇。