Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
stefano-ottolenghi committed Dec 16, 2024
1 parent 5addae6 commit e94241c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dotnet-manual/modules/ROOT/pages/performance.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ void log(string msg) {
<.> With lazy loading, the first record is quickly available.
<.> With eager loading, the first record is available many seconds after the query has been submitted (i.e. after the server has retrieved all 250 records).
<4> The total running time is lower with lazy loading, because while the client processes records the server can fetch the next ones.
<.> The total running time is lower with lazy loading, because while the client processes records the server can fetch the next ones.
With lazy loading, the client could also stop requesting records after some condition is met (by calling `.ConsumeAsync()` on the result), saving time and resources.
====
Expand Down

0 comments on commit e94241c

Please sign in to comment.