From 8202ab2705d8ec190884a28a36a668715e18021e Mon Sep 17 00:00:00 2001 From: Christopher Yeleighton Date: Tue, 14 Dec 2021 19:05:59 +0100 Subject: [PATCH 1/2] WithMany doc: fix the sample expression blog => blog.Posts --- src/EFCore/Metadata/Builders/CollectionNavigationBuilder`.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EFCore/Metadata/Builders/CollectionNavigationBuilder`.cs b/src/EFCore/Metadata/Builders/CollectionNavigationBuilder`.cs index 15fa8ec9186..a4bc9906c47 100644 --- a/src/EFCore/Metadata/Builders/CollectionNavigationBuilder`.cs +++ b/src/EFCore/Metadata/Builders/CollectionNavigationBuilder`.cs @@ -112,7 +112,7 @@ public virtual ReferenceCollectionBuilder WithOne( /// /// /// A lambda expression representing the reference navigation property on the other end of this - /// relationship (post => post.Blog). If no property is specified, the relationship will be + /// relationship (blog => blog.Posts). If no property is specified, the relationship will be /// configured without a navigation property on the other end of the relationship. /// /// An object to further configure the relationship. From 3be61e39186e0ce4110a03738d3ede5947d92cae Mon Sep 17 00:00:00 2001 From: Christopher Yeleighton Date: Fri, 17 Dec 2021 13:04:30 +0100 Subject: [PATCH 2/2] the collection navigation property /// A lambda expression representing the collection navigation property on the other end of this /// relationship (blog => blog.Posts). If no property is specified, the relationship will be /// configured without a navigation property on the other end of the relationship. --- src/EFCore/Metadata/Builders/CollectionNavigationBuilder`.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EFCore/Metadata/Builders/CollectionNavigationBuilder`.cs b/src/EFCore/Metadata/Builders/CollectionNavigationBuilder`.cs index a4bc9906c47..e504fcf1fa2 100644 --- a/src/EFCore/Metadata/Builders/CollectionNavigationBuilder`.cs +++ b/src/EFCore/Metadata/Builders/CollectionNavigationBuilder`.cs @@ -111,7 +111,7 @@ public virtual ReferenceCollectionBuilder WithOne( /// /// /// - /// A lambda expression representing the reference navigation property on the other end of this + /// A lambda expression representing the collection navigation property on the other end of this /// relationship (blog => blog.Posts). If no property is specified, the relationship will be /// configured without a navigation property on the other end of the relationship. ///