Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Unescaped HTML-like element in table #3021

Merged
merged 3 commits into from
Jan 17, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions entity-framework/core/saving/cascade-delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -467,11 +467,11 @@ The following table shows the result of each `OnDelete` value on the foreign key
|:----------------------|--------------------------
| Cascade | ON DELETE CASCADE
| Restrict | ON DELETE NO ACTION
| NoAction | <database default>
| NoAction | database default
| SetNull | ON DELETE SET NULL
| ClientSetNull | ON DELETE NO ACTION
| ClientCascade | ON DELETE NO ACTION
| ClientNoAction | <database default>
| ClientNoAction | database default

> [!NOTE]
> This table is confusing and we plan to revisit this in a future release. See [GitHub Issue #21252](https://github.com/dotnet/efcore/issues/21252).
Expand Down