查询非空字符串属性?

huangapple go评论90阅读模式
英文:

Query for non empty string property?

问题

有没有办法查询Datastore中特定属性不为空字符串的实体?

我不是指缺少属性。我真正指的是非空字符串。

英文:

Is there any way to query Datastore for entities where a specific property should not be the empty string?

I'm not referring to missing properties. I really mean non empty strings.

答案1

得分: 5

通过使用过滤器,您可以指定属性的值大于""(空字符串)。我不使用Go语言,所以无法保证它是否有效,但在其他语言中,这个技巧通常是有效的...

q := datastore.NewQuery("Example").Filter("Property >", "")
英文:

By using filters you can specify that value of the property is greater than "" (empty string). I don't use Go so I can't guarantee if it'll work but in other languages this trick usually works...

q := datastore.NewQuery("Example").Filter("Property >", "")

huangapple
  • 本文由 发表于 2014年5月4日 06:41:59
  • 转载请务必保留本文链接:https://go.coder-hub.com/23450581.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定