What is the right way to append entity from one manager to another in breeze?
问题 What is the right way to append entity from one manager to another? Straight forward attempts result in overwriting entities or in warning about the same entity key... var entity = em1.getEntities()[0]; em1.deattachEntity(entity); // assume em2 already has entities em2.attachEntity(entity); I believe there should be some in-build functionality for appending entries to another non empty manager or for generating an unique key for selected manager. Any suggestions? UPDATE: I did read the