Skip to content

Commit

Permalink
Correcting order of param defintions. (#21317)
Browse files Browse the repository at this point in the history
  • Loading branch information
lajones committed Jun 18, 2020
1 parent c64f35a commit 0cdb46f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/EFCore/Metadata/Builders/CollectionCollectionBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ public CollectionCollectionBuilder(
/// Configures the relationships to the entity types participating in the many-to-many relationship.
/// </summary>
/// <param name="joinEntity"> The type of the join entity. </param>
/// <param name="configureLeft"> The configuration for the relationship to the left entity type. </param>
/// <param name="configureRight"> The configuration for the relationship to the right entity type. </param>
/// <param name="configureLeft"> The configuration for the relationship to the left entity type. </param>
/// <returns> The builder for the association type. </returns>
public virtual EntityTypeBuilder UsingEntity(
[NotNull] Type joinEntity,
Expand All @@ -109,8 +109,8 @@ public virtual EntityTypeBuilder UsingEntity(
/// Configures the relationships to the entity types participating in the many-to-many relationship.
/// </summary>
/// <param name="joinEntity"> The type of the join entity. </param>
/// <param name="configureLeft"> The configuration for the relationship to the left entity type. </param>
/// <param name="configureRight"> The configuration for the relationship to the right entity type. </param>
/// <param name="configureLeft"> The configuration for the relationship to the left entity type. </param>
/// <param name="configureAssociation"> The configuration of the association type. </param>
/// <returns> The builder for the originating entity type so that multiple configuration calls can be chained. </returns>
public virtual EntityTypeBuilder UsingEntity(
Expand Down
4 changes: 2 additions & 2 deletions src/EFCore/Metadata/Builders/CollectionCollectionBuilder`.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ public CollectionCollectionBuilder(
/// <summary>
/// Configures the relationships to the entity types participating in the many-to-many relationship.
/// </summary>
/// <param name="configureLeft"> The configuration for the relationship to the left entity type. </param>
/// <param name="configureRight"> The configuration for the relationship to the right entity type. </param>
/// <param name="configureLeft"> The configuration for the relationship to the left entity type. </param>
/// <typeparam name="TAssociationEntity"> The type of the association entity. </typeparam>
/// <returns> The builder for the association type. </returns>
public virtual EntityTypeBuilder<TAssociationEntity> UsingEntity<TAssociationEntity>(
Expand All @@ -64,8 +64,8 @@ public virtual EntityTypeBuilder<TAssociationEntity> UsingEntity<TAssociationEnt
/// <summary>
/// Configures the relationships to the entity types participating in the many-to-many relationship.
/// </summary>
/// <param name="configureLeft"> The configuration for the relationship to the left entity type. </param>
/// <param name="configureRight"> The configuration for the relationship to the right entity type. </param>
/// <param name="configureLeft"> The configuration for the relationship to the left entity type. </param>
/// <param name="configureAssociation"> The configuration of the association type. </param>
/// <typeparam name="TAssociationEntity"> The type of the association entity. </typeparam>
/// <returns> The builder for the originating entity type so that multiple configuration calls can be chained. </returns>
Expand Down

0 comments on commit 0cdb46f

Please sign in to comment.