IdentityMap is a design pattern used for optimizing object look up and maintaining a consistent view of data within a specific context (e.g., a single web request).
As I know Entity Framework implements the Identity Map Pattern, so EF caches some entities in the memory. Let I …
.net entity-framework caching entity-framework-4 identity-map