Skip to content

Commit

Permalink
Update whatsnew.md (#3593)
Browse files Browse the repository at this point in the history
Co-authored-by: Vahid Farahmandian <[email protected]>
  • Loading branch information
ajcvickers and VahidFarahmandian authored Dec 6, 2021
1 parent 3a32241 commit bade343
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions entity-framework/core/what-is-new/ef-core-6.0/whatsnew.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
---

Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit bade343

Please sign in to comment.