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' %}
47
+
[Try it in EF6](https://dotnetfiddle.net/BcScGT) | [Try it in EF Core](https://dotnetfiddle.net/z5gyPI)
48
48
49
49
## EF+ Query Cache Async
50
50
@@ -79,7 +79,7 @@ var count = ctx.Customers.Count();
79
79
// Oops! All customers are cached instead of customer count.
80
80
varcount=ctx.Customers.FromCache().Count();
81
81
```
82
-
{% include component-try-it.html href='https://dotnetfiddle.net/SOjxeY' %}
82
+
[Try it in EF6](https://dotnetfiddle.net/SOjxeY) | [Try it in EF Core](https://dotnetfiddle.net/3EXZBt)
83
83
84
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.
85
85
@@ -92,7 +92,7 @@ var ctx = new EntitiesContext();
0 commit comments