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.
是不是可以這樣查詢?我可以做什麼作爲替代方案?
你給了錯誤的和平;我們可以在這種情況下給你一個平靜的答案,但不知道這是否奏效;)你也應該向我們展示2個模型 – 2013-10-18 07:25:09