From 4b06e99edad934b5aa0b1b6eed3245d48da9e8d3 Mon Sep 17 00:00:00 2001 From: Ashkan Taravati <7457419+ashkantaravati@users.noreply.github.com> Date: Tue, 31 Dec 2024 00:40:17 +0330 Subject: [PATCH 1/2] docs: fixed grammar error by adding missing "be" --- 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 289e57f0e2..8e65b32079 100644 --- a/entity-framework/core/modeling/relationships.md +++ b/entity-framework/core/modeling/relationships.md @@ -62,7 +62,7 @@ public class Blog This connection from `Blog` to `Post` and, inversely, from `Post` back to `Blog` is known as a "relationship" in EF Core. > [!IMPORTANT] -> A **single** relationship can typically traversed in either direction. In this example, that is from `Blog` to `Post` via the `Blog.Posts` property, and from `Post` back to `Blog` via the `Post.Blog` property. This is **one** relationship, not two. +> A **single** relationship can be typically traversed in either direction. In this example, that is from `Blog` to `Post` via the `Blog.Posts` property, and from `Post` back to `Blog` via the `Post.Blog` property. This is **one** relationship, not two. > [!TIP] > In EF Core, the `Blog.Posts` and `Post.Blog` properties are called "navigations". From 63486278660bf12fa039335e35998f8949219322 Mon Sep 17 00:00:00 2001 From: Shay Rojansky Date: Thu, 2 Jan 2025 21:21:58 +0200 Subject: [PATCH 2/2] Update entity-framework/core/modeling/relationships.md --- 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 8e65b32079..2c926a8eb8 100644 --- a/entity-framework/core/modeling/relationships.md +++ b/entity-framework/core/modeling/relationships.md @@ -62,7 +62,7 @@ public class Blog This connection from `Blog` to `Post` and, inversely, from `Post` back to `Blog` is known as a "relationship" in EF Core. > [!IMPORTANT] -> A **single** relationship can be typically traversed in either direction. In this example, that is from `Blog` to `Post` via the `Blog.Posts` property, and from `Post` back to `Blog` via the `Post.Blog` property. This is **one** relationship, not two. +> A **single** relationship can typically be traversed in either direction. In this example, that is from `Blog` to `Post` via the `Blog.Posts` property, and from `Post` back to `Blog` via the `Post.Blog` property. This is **one** relationship, not two. > [!TIP] > In EF Core, the `Blog.Posts` and `Post.Blog` properties are called "navigations".