You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{% include component-try-it.html href='https://dotnetfiddle.net/BcScGT' %}
46
48
47
49
## EF+ Query Cache Async
48
50
@@ -77,6 +79,7 @@ var count = ctx.Customers.Count();
77
79
// Oops! All customers are cached instead of customer count.
78
80
varcount=ctx.Customers.FromCache().Count();
79
81
```
82
+
{% include component-try-it.html href='https://dotnetfiddle.net/SOjxeY' %}
80
83
81
84
**EF+ Query Deferred** has been created to resolve this issue, the resolution is now deferred instead of being immediate which lets us cache the expected result.
82
85
@@ -89,6 +92,7 @@ var ctx = new EntitiesContext();
0 commit comments