0
kicks
Second Level Caching with Entity Framework
Second Level Caching is not one of the out-of-the-box features in Entity Framework. One of the great benefits of the EF is its ability to automatically generate database persistence commands (inserts, updates and deletes) based on the state information found in the context. But if that state information is unavailable, the EF has nothing to do when it’s time to call SaveChanges. Second-level caches are instrumental in solving this type of problem.