Session: Saving changes
Pending session operations e.g. store
, delete
and many others will not be send to server till save_changes
is called.
Syntax
def save_changes(self):
Example
# storing new entity
session.store(Employee("first_name", "second_name"))
session.save_changes()