You should be able to use PersistenceManager.SaveChanges(). You can add this single line of code at the end of InsertEntity, DeleteEntities, and UpdateEntity. This is mentioned in the documentation in the section on UpdateEntity.
Your other alternative is to add a Save button to the form and only save the changes when the user presses the Save button.