I need to do a query inside a Transaction
, however I don\'t know the Entity @Id, what I have is a value of a field, like a username but not the ID,
So in o
I've had a similar problem, and the simplest method I've come up with is to use one dummy parent entity. Instead of using XG transactions and inserting another Username entity for every other User entity, just create one dummy parent entity and set that as the ancestor of every User entity you create from there on. I think this method saves a lot of space and data management issues.