Start a save command chain. Allows you to save (or re-save) entity objects. Note that all command chain objects are immutable.
Saves do NOT cascade; if you wish to save an object graph, you must save each individual entity.
A quick example: {@code ofy().save().entities(e1, e2, e3).now();}
All command objects are immutable; this method returns a new object rather than modifying the current command object.
@return the next step in the immutable command chain.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|