Is there a way to prompt breeze to update a specific sub entity?
A separate application or website has made changes to my database (not using breeze). I am aware of these updates at the JavaScript level. However, I do not want to refresh the entire object/entity along with all sub entities. What I am looking to update is just a single (sub) entity with a particular attribute (such as account -> id === '3'), even if it may not be cached locally.
user-entity
-- accounts
----account 2
----account 3 <--- update this entity
----......
Thank you!