我有一个类Image
,具有以下GenericRelation
:
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.
不能这样查询吗?我能做什么作为替代方案?
如果您需要对泛型关系进行非常复杂的查询,那么我宁愿建议您自己编写 sql 并使用原始查询。所以我想我会说原始查询是一种替代方案。