My app is based on notifications from the server, using SignalR I am getting the entities and adding them using
manager.createEntity(entityType, entity, breeze.EntityState.Unchanged);
The UI is based on Angular grid which is bind to all the entities of certain type, how ever when I am adding new entity the grid isn't being updated, my assumption was that I am bind to the cache and not other collection. Same issue when I am removing entity
.entityAspect.acceptChanges()
instead of creating it with state unchanged? - PW Kad