I don't believe you can.

However you could cast your dynamic property to one of the datastore
properties that are implicitly not indexed (e.g. db.Text) e.g. for a
integer 123456789

expando.dynamic_prop = db.Text(str(123456789))

Then when you want to get it back use int(expando.dynamic_prop) to
cast it back to an integer. Probably not as efficient as if there were
the ability to flag properties as indexed or not, but I recall trying
this and it worked.

On Feb 27, 12:58 am, 风笑雪 <kea...@gmail.com> wrote:
> Most time I only want the static properties of Expando to be indexed,
> but the dynamic properties are always automatically indexed too.
>
> Is there any way to remove these indexes, just like
> db.IntegerProperty(indexed=False) dose for the static properties?
>
> Thank you.
>
> ----------
> keakon

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

Reply via email to