-
Notifications
You must be signed in to change notification settings - Fork 2k
Document temporal tables #4252
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Document temporal tables #4252
Conversation
* The creation of temporal tables using [EF Core Migrations](xref:core/managing-schemas/migrations/index) | ||
* Transformation of existing tables into temporal tables, again using Migrations | ||
* Querying historical data | ||
* Restoring data from some point in the past |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is "reading" more accurate than "restoring"? Restoring sounds like the ability to revert the entire table to some past state.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Restoring is what I show in the example. That is, reading data from some previous point in time and then updating the current state with that data.
@@ -8,6 +8,9 @@ uid: core/providers/provider-log | |||
|
|||
# Provider-impacting changes | |||
|
|||
> [!IMPORTANT] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we just remove this page? It seems to have very very little value at this point...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should not make it 404. But deleting the content might make sense.
Co-authored-by: Shay Rojansky <roji@roji.org>
Co-authored-by: Shay Rojansky <roji@roji.org>
Co-authored-by: Shay Rojansky <roji@roji.org>
Fixes #3355