From bf1258e72a066af1eb85d9113e446d1d3eee54e3 Mon Sep 17 00:00:00 2001 From: Amr Badawy Date: Mon, 2 Mar 2020 13:23:28 +0300 Subject: [PATCH] change [owned type] to [owned entity] in this article yo use [owned entity] and [owned type] interchangeably but in this sentence it's better to use [owned entity] not to make any confusing to user Suggestion :: to use only one term --- entity-framework/core/modeling/owned-entities.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entity-framework/core/modeling/owned-entities.md b/entity-framework/core/modeling/owned-entities.md index 505deb000b..c8d3a6e5c7 100644 --- a/entity-framework/core/modeling/owned-entities.md +++ b/entity-framework/core/modeling/owned-entities.md @@ -10,7 +10,7 @@ uid: core/modeling/owned-entities EF Core allows you to model entity types that can only ever appear on navigation properties of other entity types. These are called _owned entity types_. The entity containing an owned entity type is its _owner_. -Owned entities are essentially a part of the owner and cannot exist without it, they are conceptually similar to [aggregates](https://martinfowler.com/bliki/DDD_Aggregate.html). This means that the owned type is by definition on the dependent side of the relationship with the owner. +Owned entities are essentially a part of the owner and cannot exist without it, they are conceptually similar to [aggregates](https://martinfowler.com/bliki/DDD_Aggregate.html). This means that the owned entity is by definition on the dependent side of the relationship with the owner. ## Explicit configuration