From bade343d693c7856738b9373afb87e63c9d3d74b Mon Sep 17 00:00:00 2001 From: Arthur Vickers Date: Mon, 6 Dec 2021 19:55:09 +0000 Subject: [PATCH] Update whatsnew.md (#3593) Co-authored-by: Vahid Farahmandian --- .../core/what-is-new/ef-core-6.0/whatsnew.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/entity-framework/core/what-is-new/ef-core-6.0/whatsnew.md b/entity-framework/core/what-is-new/ef-core-6.0/whatsnew.md index c6dcba5a39..f86a7401b5 100644 --- a/entity-framework/core/what-is-new/ef-core-6.0/whatsnew.md +++ b/entity-framework/core/what-is-new/ef-core-6.0/whatsnew.md @@ -2,7 +2,7 @@ title: What's New in EF Core 6.0 description: Overview of new features in EF Core 6.0 author: ajcvickers -ms.date: 11/09/2021 +ms.date: 12/06/2021 uid: core/what-is-new/ef-core-6.0/whatsnew --- @@ -182,13 +182,13 @@ Notice that the `ValidTo` column (by default called `PeriodEnd`) contains the `d ### Querying historical data -EF Core supports querying historical data from the table through several new query operators: +EF Core supports queries that include historical data through several new query operators: -* `TemporalAsOf`: Returns rows that were active (current) at the given UTC time. This is a single row from the history table for a given primary key. -* `TemporalAll`: Returns all rows in the historical data. This is typically many rows from the history table for a given primary key. -* `TemporalFromTo`: Returns all rows that were active between two given UTC times. This may be many rows from the history table for a given primary key. +* `TemporalAsOf`: Returns rows that were active (current) at the given UTC time. This is a single row from the current table or history table for a given primary key. +* `TemporalAll`: Returns all rows in the historical data. This is typically many rows from the history table and/or the current table for a given primary key. +* `TemporalFromTo`: Returns all rows that were active between two given UTC times. This may be many rows from the history table and/or the current table for a given primary key. * `TemporalBetween`: The same as `TemporalFromTo`, except that rows are included that became active on the upper boundary. -* `TemporalContainedIn`: Returns all rows that started being active and ended being active between two given UTC times. This may be many rows from the history table for a given primary key. +* `TemporalContainedIn`: Returns all rows that started being active and ended being active between two given UTC times. This may be many rows from the history table and/or the current table for a given primary key. > [!NOTE] > See the [SQL Server temporal tables documentation](/sql/relational-databases/tables/temporal-tables#how-do-i-query-temporal-data) for more information on exactly which rows are included for each of these operators.