You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to google-a...@googlegroups.com
HI I have some datastructure like this:
A(db.Model): type : db.StringProperty() b: db.ReferenceProperty(B) c: db.ReferenceProperty(C)
NOw I do now want to do any queries on object of type B and C.... they are there just for keeping my code clean.... the problem is to do this I have to put B first then get a reference to it and then put A which is an unneccesary DB operation for me..... Is there some way in which I can accomplish this or I ll always have to put B first into the db first.... Besides what happens if I do something like A.b.c = blah and then put A will the value of b change in the data A......