Hello,

I'm using low-level datastore API and its Query class to filter
entities.
I put two entities to datastore: the first has set a property 'list'
to null and the second has the same property set to [null] (a list
containing one null value).

The following query will find both of them - that's ok:
  new Query("MyEntity").addFilter( "list", Query.FilterOperator.EQUAL,
null)

But is there a way (using GAE API only) to filter only the first
entity or only the second one ?
The full code is on my blog: 
http://vaclavb.blogspot.com/2010/02/lists-and-nulls-in-google-app-engine.html

Vaclav

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.

Reply via email to