我想根据实体属性获得一组不同的结果。我正在尝试运行以下代码。
db.Query(EntityName, projection = ("entityProperty",)).run(distinct=True)
我收到以下错误
Unknown configuration option ('distinct')
根据 GAE 文档 distinct 是 run 方法的一部分
https://developers.google.com/appengine/docs/python/datastore/queryclass#Query_run
知道我做错了什么吗?