@@ -22,7 +22,7 @@ var count = ctx.Customers.Count();
2222var count = ctx .Customers .FromCache ().Count ();
2323
2424```
25- {% include component-try-it.html href=' https://dotnetfiddle.net/WgpFfH ' %}
25+ [ Try it in EF6 ] ( https://dotnetfiddle.net/WgpFfH ) | [ Try it in EF Core ] ( https://dotnetfiddle.net/cu3UiE )
2626
2727Here comes in play the deferred query which acts exactly like deferred methods, by modifying the query expression without resolving it.
2828
@@ -36,7 +36,7 @@ var ctx = new EntitiesContext();
3636var count = ctx .Customers .DeferredCount ().FromCache ();
3737
3838```
39- {% include component-try-it.html href=' https://dotnetfiddle.net/ZChhmD ' %}
39+ [ Try it in EF6 ] ( https://dotnetfiddle.net/ZChhmD ) | [ Try it in EF Core ] ( https://dotnetfiddle.net/xIz5wx )
4040
4141#### All LINQ IQueryable extension methods and overloads are supported:
4242
@@ -77,7 +77,7 @@ ctx.Customers.DeferredCount().FromCache();
7777ctx .Customers .DeferredCount ().FutureValue ();
7878
7979```
80- {% include component-try-it.html href=' https://dotnetfiddle.net/5KcNj3 ' %}
80+ [ Try it in EF6 ] ( https://dotnetfiddle.net/5KcNj3 ) | [ Try it in EF Core ] ( https://dotnetfiddle.net/ohLJL3 )
8181
8282## EF+ Query Deferred Execute
8383
@@ -93,7 +93,7 @@ var countDeferred = ctx.Customers.DeferredCount();
9393var count = countDeferred .Execute ();
9494
9595```
96- {% include component-try-it.html href=' https://dotnetfiddle.net/sXOfNB ' %}
96+ [ Try it in EF6 ] ( https://dotnetfiddle.net/sXOfNB ) | [ Try it in EF Core ] ( https://dotnetfiddle.net/Ou2Ly4 )
9797
9898## EF+ Query Deferred Execute Async
9999
0 commit comments