谷歌应用引擎或过滤器

时间:2009-11-23 21:29:00

标签: google-app-engine gql

我想在谷歌应用引擎中进行OR过滤。

例如:

class MyModel(db.Model):
    name = db.StringPropery()
    description = db. StringPropery()

以下将返回名称= steve AND description =“some text”的所有“MyModel”实例

results = MyModel.all().filter("name =", "steve").filter("description =","some text").fetch(10)

我使用什么语法将其更改为OR语句?或者我需要做两个查询,然后以某种方式合并它们?

1 个答案:

答案 0 :(得分:1)

我在这里找到了另一个带有一些答案的帖子: app-engine-datastore-does-not-support-operator-or

不确定如何将此标记为重复。遗憾。