What @emcas88 is trying to say is that EF will only check the cache when you use the .Find method on DbSet.
Using .Single, .First, .Where, etc will not cache the results unless you are using second-level caching.
What @emcas88 is trying to say is that EF will only check the cache when you use the .Find method on DbSet.
Using .Single, .First, .Where, etc will not cache the results unless you are using second-level caching.