In regards to this statement in Google's app-engine doc:
"Only use entity groups when they are needed for transactions. For other relationships between entities, use ReferenceProperty properties and Key values, which can be used in queries."
can someone give an example of a query of say getting all the players that are member of the same team. also say that this set of players for each team never changes, but characteristics of the team such as uniforms, wins, losses and salaries change and effect each player...in such a case does this mean that there are or are not 'transactions' involved.
How would you code a query asking for all the players of a certain team?