Breeze - How to Load Navigation property from cache
问题 I am getting a single entity by using a method fetchEntityByKey , after that I am loading navigation property for the entity by entityAspect.loadNavigationProperty . But loadNavigationProperty always make a call to the server, what I am wondering if I can first check it from cache, if it is exist then get it from there otherwise go the server. How is it possible? Here is my current code return datacontext.getProjectById(projectId) .then(function (data) { vm.project = data; vm.project