at this link http://code.google.com/appengine/docs/java/datastore/queries.html
i found that you can return query result with an easy way and add filter and so on and to get the result list : List<Entity> results = datastore.prepare(query).asList(FetchOptions.Builder.withDefaults()); my question is here : i have java bean class called Offer how to cast result to be list<Offer> not list<Entity> how can i do this step ?? -- 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 [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine-java?hl=en.
