From 4f78d26a42f7f9a62c17eaccf235b8325adf5752 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Fri, 31 Mar 2023 18:21:30 +0200 Subject: [PATCH] Update relationships.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I noticed this word was missing when reading the docs, so I thought I'd add it 😊 --- entity-framework/core/modeling/relationships.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entity-framework/core/modeling/relationships.md b/entity-framework/core/modeling/relationships.md index 6c92944b74..503b982603 100644 --- a/entity-framework/core/modeling/relationships.md +++ b/entity-framework/core/modeling/relationships.md @@ -176,7 +176,7 @@ EF models are built using a combination of three mechanisms: conventions, mappin Other topics related to relationships include: -- [_Cascade deletes_](xref:core/saving/cascade-delete), which describe how related entities can be automatically deleted `SaveChanges` or `SaveChangesAsync` is called. +- [_Cascade deletes_](xref:core/saving/cascade-delete), which describe how related entities can be automatically deleted when `SaveChanges` or `SaveChangesAsync` is called. - [_Owned entity types_](xref:core/modeling/owned-entities) use a special type of "owning" relationship that implies a stronger connection between the two types than the "normal" relationships discussed here. Many of the concepts described here for normal relationships are carried over to owned relationships. However, owned relationships also have their own special behaviors. > [!TIP]