Skip to content

Commit 1982472

Browse files
Update coreTypes.md
Update to `existing core types`
1 parent f9d8f70 commit 1982472

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

graph/articles/coreTypes.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The following types are identified as core types, and will require strong justif
1616

1717
## Alternatives to Adding Structural Properties
1818

19-
Instead of adding a structural property to the existing type (`user`, `group` or `device`), create a new type that models the information captured in the proposed structural property(s).
19+
Instead of adding a structural property to the existing core type (`user`, `group` or `device`), create a new type that models the information captured in the proposed structural property(s).
2020
Then, model the relationship between the existing core type and the new type by adding a navigation property. For information on modeling with navigation properties, see [Navigation Property](../patterns/navigation-property.md).
2121

2222
## Example:
@@ -38,7 +38,7 @@ Don't add new properties to core types such as `user`.
3838

3939
Model the information by creating a new type and model the relationship to the existing core type with a navigation property. To determine which option is most appropriate, see [Navigation Property](../patterns/navigation-property.md):
4040

41-
#### Option 1: Add a navigation property on the existing type to the new type, containing the new type.
41+
#### Option 1: Add a navigation property on the existing core type to the new type, containing the new type.
4242

4343
Define the new entity type:
4444
```xml
@@ -55,7 +55,7 @@ Add a contained navigation from user to the new entity type:
5555
</EntityType>
5656
```
5757

58-
#### Option 2: Contain the new type in an entity set elsewhere, and add a navigation property to the new type on the existing type.
58+
#### Option 2: Contain the new type in an entity set elsewhere, and add a navigation property to the new type on the existing core type.
5959

6060
Define the new entity type:
6161
```xml
@@ -77,7 +77,7 @@ Add a navigation from user to the new type:
7777
</EntityType>
7878
```
7979

80-
#### Option 3: Contain the new type in an entity set elsewhere, and add a navigation property to the existing type on the new type.
80+
#### Option 3: Contain the new type in an entity set elsewhere, and add a navigation property to the existing core type on the new type.
8181

8282
Define the new entity type, with a navigation to the user:
8383
```xml

0 commit comments

Comments
 (0)