In a follow up to my earlier question - https://devnet.kentico.com/questions/caching-not-working-as-expected-in-kentico-13Is IPageDataContextRetriever automatically cached.In ArticleRepository.cs in the dancing goat example project, the GetCurrent() Method has the below call before using IPageRetriever pageRetriever to return the required Article via cache..** (added at end - editor removing end of my question otherwise.)I'm a little confused on this code, in that the first call already gets an Article object (maybe it doesn't return all the custom fields?), and from what I can see, would make a database call. This surely negates the 2nd call that uses cache?** var page = pageDataContextRetriever.Retrieve
↧