From 02984b750be0f7d8fdbcc9b9325ded7827dc63d6 Mon Sep 17 00:00:00 2001 From: Turner Bass Date: Mon, 28 Oct 2019 09:54:58 -0500 Subject: [PATCH] Found a small typo --- entity-framework/ef6/fundamentals/relationships.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entity-framework/ef6/fundamentals/relationships.md b/entity-framework/ef6/fundamentals/relationships.md index 9fa1595a5a..5e793d3871 100644 --- a/entity-framework/ef6/fundamentals/relationships.md +++ b/entity-framework/ef6/fundamentals/relationships.md @@ -25,7 +25,7 @@ When foreign key columns are not included in the model, the association informat You can choose to use one or both types of associations in your model. However, if you have a pure many-to-many relationship that is connected by a join table that contains only foreign keys, the EF will use an independent association to manage such many-to-many relationship.    -The following image shows a conceptual model that was created with the Entity Framework Designer. The model contains two entities that participate in one-to-many relationship. Both entities have navigation properties. **Course** is the depend entity and has the **DepartmentID** foreign key property defined. +The following image shows a conceptual model that was created with the Entity Framework Designer. The model contains two entities that participate in one-to-many relationship. Both entities have navigation properties. **Course** is the dependent entity and has the **DepartmentID** foreign key property defined. ![Department and Course tables with navigation properties](~/ef6/media/relationshipefdesigner.png)