Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed misspelling of Friends #4349

Merged
merged 1 commit into from
May 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1029,7 +1029,7 @@ Unfortunately, this is not easy to map. The same navigation cannot be used for b
-->
[!code-csharp[SelfReferencingUnidirectionalManyToManyConfig](../../../../samples/core/Modeling/Relationships/ManyToMany.cs?name=SelfReferencingUnidirectionalManyToManyConfig)]

However, to make sure two people are both related to each other, each person will need to be manually added to the other person's `Firends` collection. For example:
However, to make sure two people are both related to each other, each person will need to be manually added to the other person's `Friends` collection. For example:

```csharp
ginny.Friends.Add(hermione);
Expand Down