From 0cdb46fa65c985287fbc3ce3ccb27af0067e8c57 Mon Sep 17 00:00:00 2001 From: lajones Date: Thu, 18 Jun 2020 10:52:17 -0700 Subject: [PATCH] Correcting order of param defintions. (#21317) --- src/EFCore/Metadata/Builders/CollectionCollectionBuilder.cs | 4 ++-- src/EFCore/Metadata/Builders/CollectionCollectionBuilder`.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/EFCore/Metadata/Builders/CollectionCollectionBuilder.cs b/src/EFCore/Metadata/Builders/CollectionCollectionBuilder.cs index 9d33cbdee9d..2131ba12e1d 100644 --- a/src/EFCore/Metadata/Builders/CollectionCollectionBuilder.cs +++ b/src/EFCore/Metadata/Builders/CollectionCollectionBuilder.cs @@ -86,8 +86,8 @@ public CollectionCollectionBuilder( /// Configures the relationships to the entity types participating in the many-to-many relationship. /// /// The type of the join entity. - /// The configuration for the relationship to the left entity type. /// The configuration for the relationship to the right entity type. + /// The configuration for the relationship to the left entity type. /// The builder for the association type. public virtual EntityTypeBuilder UsingEntity( [NotNull] Type joinEntity, @@ -109,8 +109,8 @@ public virtual EntityTypeBuilder UsingEntity( /// Configures the relationships to the entity types participating in the many-to-many relationship. /// /// The type of the join entity. - /// The configuration for the relationship to the left entity type. /// The configuration for the relationship to the right entity type. + /// The configuration for the relationship to the left entity type. /// The configuration of the association type. /// The builder for the originating entity type so that multiple configuration calls can be chained. public virtual EntityTypeBuilder UsingEntity( diff --git a/src/EFCore/Metadata/Builders/CollectionCollectionBuilder`.cs b/src/EFCore/Metadata/Builders/CollectionCollectionBuilder`.cs index c7d1611f400..90758064e0a 100644 --- a/src/EFCore/Metadata/Builders/CollectionCollectionBuilder`.cs +++ b/src/EFCore/Metadata/Builders/CollectionCollectionBuilder`.cs @@ -41,8 +41,8 @@ public CollectionCollectionBuilder( /// /// Configures the relationships to the entity types participating in the many-to-many relationship. /// - /// The configuration for the relationship to the left entity type. /// The configuration for the relationship to the right entity type. + /// The configuration for the relationship to the left entity type. /// The type of the association entity. /// The builder for the association type. public virtual EntityTypeBuilder UsingEntity( @@ -64,8 +64,8 @@ public virtual EntityTypeBuilder UsingEntity /// Configures the relationships to the entity types participating in the many-to-many relationship. /// - /// The configuration for the relationship to the left entity type. /// The configuration for the relationship to the right entity type. + /// The configuration for the relationship to the left entity type. /// The configuration of the association type. /// The type of the association entity. /// The builder for the originating entity type so that multiple configuration calls can be chained.