tags:

views:

42

answers:

1

i want to match StringProperty() with UserProperty & i cant change property so how i can achieve it?

Please help me out..................

A: 

You seem to be talking about Google App Engine's model properties. To the best of my knowledge, you can't query a UserProperty with a string, because a User is not a string. Instead, try creating a brand new User object; you just need the email address of the user. Then you can query for users matching that user.

inklesspen