diff --git a/docs/pages/features/query-future.md b/docs/pages/features/query-future.md index 668462d8..78af69e3 100644 --- a/docs/pages/features/query-future.md +++ b/docs/pages/features/query-future.md @@ -1,12 +1,15 @@ # QueryFuture ## Description -Every time an immediate method like **ToList** or **FirstOrDefault** is invoked on a query, a database round trip is made to retrieve data. While most applications don't have performance issues with making multiple round trips, batching multiple queries into one can be critical for some heavy traffic applications for scalability. Major ORM like NHibernate had this feature for a long time but, unfortunately for Entity Framework users, batching queries is only available through third party libraries. +Every time an immediate method like **ToList** or **FirstOrDefault** is invoked on a query, a database round trip is made to retrieve data. While most applications don't have performance issues with making multiple round trips, batching multiple queries into one can be critical for some heavy traffic applications for scalability. **EF Classic Query Future** opens up all batching future queries features for Entity Framework users. To batch multiple queries, simply append **Future** or **FutureValue** method to the query. All future queries will be stored in a pending list, and when the first future query requires a database round trip, all queries will be resolved in the same SQL command. +### Provider Supported +- SQL Server + ## Future ### Example