From daa0c04b198715e3aba853b27dc70f79b07c50f4 Mon Sep 17 00:00:00 2001 From: Asger Skovbo Petersen Date: Fri, 5 Dec 2025 14:12:46 +0100 Subject: [PATCH] Fix missing word --- entity-framework/core/performance/efficient-querying.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entity-framework/core/performance/efficient-querying.md b/entity-framework/core/performance/efficient-querying.md index 2e9756d17b..b2af305d6b 100644 --- a/entity-framework/core/performance/efficient-querying.md +++ b/entity-framework/core/performance/efficient-querying.md @@ -147,7 +147,7 @@ This will make EF Core fetch all the Blogs - along with their Posts - in a singl ## Buffering and streaming -Buffering refers to loading all your query results into memory, whereas streaming means that EF hands the application a single result each time, never containing the entire resultset in memory. In principle, the memory requirements of a streaming query are fixed - they are the same whether the query returns 1 row or 1000; a buffering query, on the other hand, requires more memory the more rows are returned. For queries that result large resultsets, this can be an important performance factor. +Buffering refers to loading all your query results into memory, whereas streaming means that EF hands the application a single result each time, never containing the entire resultset in memory. In principle, the memory requirements of a streaming query are fixed - they are the same whether the query returns 1 row or 1000; a buffering query, on the other hand, requires more memory the more rows are returned. For queries that produce large resultsets, this can be an important performance factor. Whether a query buffers or streams depends on how it is evaluated: