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

XML docs for LINQ Join, LeftJoin, RightJoin #111177

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Correct summaries
  • Loading branch information
roji committed Jan 13, 2025
commit ec356f5884bf6217207641ee7a7c4caabdcbab09
18 changes: 6 additions & 12 deletions src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,7 @@
}

/// <summary>
/// Correlates the elements of two sequences based on matching keys.
/// The default equality comparer is used to compare keys.
/// Correlates the elements of two sequences based on matching keys. The default equality comparer is used to compare keys.
/// </summary>
/// <param name="outer">The first sequence to join.</param>
/// <param name="inner">The sequence to join to the first sequence.</param>
Expand Down Expand Up @@ -293,8 +292,7 @@
}

/// <summary>
/// Correlates the elements of two sequences based on matching keys.
/// The default equality comparer is used to compare keys.
/// Correlates the elements of two sequences based on matching keys. A specified <see cref="IEqualityComparer{T}" /> is used to compare keys.
/// </summary>
/// <param name="outer">The first sequence to join.</param>
/// <param name="inner">The sequence to join to the first sequence.</param>
Expand Down Expand Up @@ -441,8 +439,7 @@
}

/// <summary>
/// Correlates the elements of two sequences based on matching keys; elements of the first sequence are returned regardless of whether matching elements are found in the second sequence.
/// The default equality comparer is used to compare keys.
/// Correlates the elements of two sequences based on matching keys. The default equality comparer is used to compare keys.
/// </summary>
/// <param name="outer">The first sequence to join.</param>
/// <param name="inner">The sequence to join to the first sequence.</param>
Expand Down Expand Up @@ -556,8 +553,7 @@
}

/// <summary>
/// Correlates the elements of two sequences based on matching keys; elements of the first sequence are returned regardless of whether matching elements are found in the second sequence.
/// The default equality comparer is used to compare keys.
/// Correlates the elements of two sequences based on matching keys. A specified <see cref="IEqualityComparer{T}" /> is used to compare keys.
/// </summary>
/// <param name="outer">The first sequence to join.</param>
/// <param name="inner">The sequence to join to the first sequence.</param>
Expand Down Expand Up @@ -642,7 +638,7 @@
/// generates a <see cref="MethodCallExpression" /> that represents calling
/// <see cref="LeftJoin{TOuter, TInner, TKey, TResult}(IQueryable{TOuter}, IEnumerable{TInner}, Expression{Func{TOuter, TKey}}, Expression{Func{TInner, TKey}}, Expression{Func{TOuter, TInner, TResult}}, IEqualityComparer{TKey})" />
/// itself as a constructed generic method.
/// It then passes the <see cref="MethodCallExpression" /> to the <see cref="IQueryProvider.CreateQuery{TElement}(Expression)" /> method of the <see cref="IQueryProvider" /> represented by the <see cref="IQueryable{T}.Provider" /> property of the <paramref name="outer" /> parameter.

Check failure on line 641 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build wasi-wasm linux Release LibraryTests_Smoke)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L641

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(641,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 641 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build android-arm64 Release AllSubsets_Mono)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L641

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(641,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 641 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build android-arm Release AllSubsets_Mono)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L641

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(641,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 641 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build tvos-arm64 Release AllSubsets_NativeAOT)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L641

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(641,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 641 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build tvossimulator-x64 Debug AllSubsets_Mono)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L641

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(641,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 641 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build maccatalyst-x64 Release AllSubsets_Mono)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L641

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(641,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 641 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests_Smoke_AOT)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L641

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(641,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 641 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests_Threading)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L641

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(641,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 641 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests_EAT)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L641

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(641,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 641 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / dotnet-linker-tests (Build browser-wasm linux release Runtime_Release)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L641

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(641,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 641 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L641

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(641,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 641 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build ios-arm64 Release AllSubsets_NativeAOT)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L641

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(641,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 641 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build tvos-arm64 Release AllSubsets_Mono)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L641

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(641,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 641 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build ios-arm64 Release AllSubsets_Mono)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L641

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(641,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 641 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / dotnet-linker-tests

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L641

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(641,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 641 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L641

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(641,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved
/// </para>
/// <para>
/// The query behavior that occurs as a result of executing an expression tree that represents calling
Expand Down Expand Up @@ -870,15 +866,14 @@
}

/// <summary>
/// Correlates the elements of two sequences based on matching keys; elements of the second sequence are returned regardless of whether matching elements are found in the first sequence.
/// The default equality comparer is used to compare keys.
/// Correlates the elements of two sequences based on matching keys. The default equality comparer is used to compare keys.
/// </summary>
/// <param name="outer">The first sequence to join.</param>
/// <param name="inner">The sequence to join to the first sequence.</param>
/// <param name="outerKeySelector">A function to extract the join key from each element of the first sequence.</param>
/// <param name="innerKeySelector">A function to extract the join key from each element of the second sequence.</param>
/// <param name="resultSelector">A function to create a result element from two matching elements.</param>
/// <param name="comparer">An <see cref="IEqualityComparer{T}" /> to hash and compare keys.</param>

Check failure on line 876 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build wasi-wasm linux Release LibraryTests_Smoke)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L876

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(876,26): error CS1572: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has a param tag for 'comparer', but there is no parameter by that name

Check failure on line 876 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build android-arm64 Release AllSubsets_Mono)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L876

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(876,26): error CS1572: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has a param tag for 'comparer', but there is no parameter by that name

Check failure on line 876 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build android-arm Release AllSubsets_Mono)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L876

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(876,26): error CS1572: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has a param tag for 'comparer', but there is no parameter by that name

Check failure on line 876 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build tvos-arm64 Release AllSubsets_NativeAOT)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L876

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(876,26): error CS1572: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has a param tag for 'comparer', but there is no parameter by that name

Check failure on line 876 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build tvossimulator-x64 Debug AllSubsets_Mono)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L876

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(876,26): error CS1572: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has a param tag for 'comparer', but there is no parameter by that name

Check failure on line 876 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build maccatalyst-x64 Release AllSubsets_Mono)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L876

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(876,26): error CS1572: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has a param tag for 'comparer', but there is no parameter by that name

Check failure on line 876 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests_Smoke_AOT)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L876

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(876,26): error CS1572: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has a param tag for 'comparer', but there is no parameter by that name

Check failure on line 876 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests_Threading)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L876

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(876,26): error CS1572: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has a param tag for 'comparer', but there is no parameter by that name

Check failure on line 876 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests_EAT)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L876

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(876,26): error CS1572: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has a param tag for 'comparer', but there is no parameter by that name

Check failure on line 876 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / dotnet-linker-tests (Build browser-wasm linux release Runtime_Release)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L876

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(876,26): error CS1572: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has a param tag for 'comparer', but there is no parameter by that name

Check failure on line 876 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L876

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(876,26): error CS1572: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has a param tag for 'comparer', but there is no parameter by that name

Check failure on line 876 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build ios-arm64 Release AllSubsets_NativeAOT)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L876

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(876,26): error CS1572: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has a param tag for 'comparer', but there is no parameter by that name

Check failure on line 876 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build tvos-arm64 Release AllSubsets_Mono)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L876

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(876,26): error CS1572: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has a param tag for 'comparer', but there is no parameter by that name

Check failure on line 876 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build ios-arm64 Release AllSubsets_Mono)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L876

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(876,26): error CS1572: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has a param tag for 'comparer', but there is no parameter by that name

Check failure on line 876 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / dotnet-linker-tests

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L876

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(876,26): error CS1572: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has a param tag for 'comparer', but there is no parameter by that name

Check failure on line 876 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L876

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(876,26): error CS1572: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has a param tag for 'comparer', but there is no parameter by that name
/// <typeparam name="TOuter">The type of the elements of the first sequence.</typeparam>
/// <typeparam name="TInner">The type of the elements of the second sequence.</typeparam>
/// <typeparam name="TKey">The type of the keys returned by the key selector functions.</typeparam>
Expand Down Expand Up @@ -955,7 +950,7 @@
/// generates a <see cref="MethodCallExpression" /> that represents calling
/// <see cref="RightJoin{TOuter, TInner, TKey, TResult}(IQueryable{TOuter}, IEnumerable{TInner}, Expression{Func{TOuter, TKey}}, Expression{Func{TInner, TKey}}, Expression{Func{TOuter, TInner, TResult}})" />
/// itself as a constructed generic method.
/// It then passes the <see cref="MethodCallExpression" /> to the <see cref="IQueryProvider.CreateQuery{TElement}(Expression)" /> method of the <see cref="IQueryProvider" /> represented by the <see cref="IQueryable{T}.Provider" /> property of the <paramref name="outer" /> parameter.

Check failure on line 953 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build wasi-wasm linux Release LibraryTests_Smoke)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L953

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(953,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 953 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build android-arm64 Release AllSubsets_Mono)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L953

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(953,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 953 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build android-arm Release AllSubsets_Mono)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L953

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(953,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 953 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build tvos-arm64 Release AllSubsets_NativeAOT)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L953

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(953,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 953 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build tvossimulator-x64 Debug AllSubsets_Mono)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L953

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(953,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 953 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build maccatalyst-x64 Release AllSubsets_Mono)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L953

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(953,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 953 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests_Smoke_AOT)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L953

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(953,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 953 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests_Threading)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L953

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(953,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 953 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests_EAT)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L953

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(953,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 953 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / dotnet-linker-tests (Build browser-wasm linux release Runtime_Release)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L953

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(953,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 953 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L953

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(953,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 953 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build ios-arm64 Release AllSubsets_NativeAOT)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L953

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(953,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 953 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build tvos-arm64 Release AllSubsets_Mono)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L953

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(953,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 953 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build ios-arm64 Release AllSubsets_Mono)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L953

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(953,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 953 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / dotnet-linker-tests

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L953

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(953,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved
/// </para>
/// <para>
/// The query behavior that occurs as a result of executing an expression tree that represents calling
Expand Down Expand Up @@ -985,8 +980,7 @@
}

/// <summary>
/// Correlates the elements of two sequences based on matching keys; elements of the second sequence are returned regardless of whether matching elements are found in the first sequence.
/// The default equality comparer is used to compare keys.
/// Correlates the elements of two sequences based on matching keys. A specified <see cref="IEqualityComparer{T}" /> is used to compare keys.
/// </summary>
/// <param name="outer">The first sequence to join.</param>
/// <param name="inner">The sequence to join to the first sequence.</param>
Expand Down Expand Up @@ -1070,7 +1064,7 @@
/// generates a <see cref="MethodCallExpression" /> that represents calling
/// <see cref="RightJoin{TOuter, TInner, TKey, TResult}(IQueryable{TOuter}, IEnumerable{TInner}, Expression{Func{TOuter, TKey}}, Expression{Func{TInner, TKey}}, Expression{Func{TOuter, TInner, TResult}}, IEqualityComparer{TKey})" />
/// itself as a constructed generic method.
/// It then passes the <see cref="MethodCallExpression" /> to the <see cref="IQueryProvider.CreateQuery{TElement}(Expression)" /> method of the <see cref="IQueryProvider" /> represented by the <see cref="IQueryable{T}.Provider" /> property of the <paramref name="outer" /> parameter.

Check failure on line 1067 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build wasi-wasm linux Release LibraryTests_Smoke)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L1067

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(1067,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 1067 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build android-arm64 Release AllSubsets_Mono)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L1067

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(1067,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 1067 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build android-arm Release AllSubsets_Mono)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L1067

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(1067,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 1067 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build tvos-arm64 Release AllSubsets_NativeAOT)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L1067

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(1067,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 1067 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build tvossimulator-x64 Debug AllSubsets_Mono)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L1067

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(1067,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 1067 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build maccatalyst-x64 Release AllSubsets_Mono)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L1067

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(1067,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 1067 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests_Smoke_AOT)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L1067

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(1067,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 1067 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests_Threading)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L1067

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(1067,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 1067 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests_EAT)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L1067

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(1067,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 1067 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / dotnet-linker-tests (Build browser-wasm linux release Runtime_Release)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L1067

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(1067,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 1067 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L1067

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(1067,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 1067 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build ios-arm64 Release AllSubsets_NativeAOT)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L1067

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(1067,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 1067 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build tvos-arm64 Release AllSubsets_Mono)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L1067

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(1067,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 1067 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / runtime (Build ios-arm64 Release AllSubsets_Mono)

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L1067

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(1067,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved

Check failure on line 1067 in src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

View check run for this annotation

Azure Pipelines / dotnet-linker-tests

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs#L1067

src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs(1067,213): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'Provider' that could not be resolved
/// </para>
/// <para>
/// The query behavior that occurs as a result of executing an expression tree that represents calling
Expand Down
6 changes: 2 additions & 4 deletions src/libraries/System.Linq/src/System/Linq/Join.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
public static partial class Enumerable
{
/// <summary>
/// Correlates the elements of two sequences based on matching keys.
/// The default equality comparer is used to compare keys.
/// Correlates the elements of two sequences based on matching keys. The default equality comparer is used to compare keys.
/// </summary>
/// <param name="outer">The first sequence to join.</param>
/// <param name="inner">The sequence to join to the first sequence.</param>
Expand Down Expand Up @@ -112,8 +111,7 @@
Join(outer, inner, outerKeySelector, innerKeySelector, resultSelector, comparer: null);

/// <summary>
/// Correlates the elements of two sequences based on matching keys.
/// The default equality comparer is used to compare keys.
/// Correlates the elements of two sequences based on matching keys. A specified <see cref="IEqualityComparer{T}" /> is used to compare keys.
/// </summary>
/// <param name="outer">The first sequence to join.</param>
/// <param name="inner">The sequence to join to the first sequence.</param>
Expand Down Expand Up @@ -209,7 +207,7 @@
/// An left outer join can be performed using the
/// <see cref="LeftJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter, TInner, TResult}, IEqualityComparer{TKey})" /> method,
/// and a right outer join can be performed using the
/// <see cref="RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})" /> method,

Check failure on line 210 in src/libraries/System.Linq/src/System/Linq/Join.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm Debug AllSubsets_Mono)

src/libraries/System.Linq/src/System/Linq/Join.cs#L210

src/libraries/System.Linq/src/System/Linq/Join.cs(210,24): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})' that could not be resolved

Check failure on line 210 in src/libraries/System.Linq/src/System/Linq/Join.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Debug AllSubsets_Mono)

src/libraries/System.Linq/src/System/Linq/Join.cs#L210

src/libraries/System.Linq/src/System/Linq/Join.cs(210,24): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})' that could not be resolved

Check failure on line 210 in src/libraries/System.Linq/src/System/Linq/Join.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-x64 Release AllSubsets_Mono)

src/libraries/System.Linq/src/System/Linq/Join.cs#L210

src/libraries/System.Linq/src/System/Linq/Join.cs(210,24): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})' that could not be resolved

Check failure on line 210 in src/libraries/System.Linq/src/System/Linq/Join.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Debug AllSubsets_Mono)

src/libraries/System.Linq/src/System/Linq/Join.cs#L210

src/libraries/System.Linq/src/System/Linq/Join.cs(210,24): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})' that could not be resolved

Check failure on line 210 in src/libraries/System.Linq/src/System/Linq/Join.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Release AllSubsets_Mono_LLVMAOT)

src/libraries/System.Linq/src/System/Linq/Join.cs#L210

src/libraries/System.Linq/src/System/Linq/Join.cs(210,24): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})' that could not be resolved

Check failure on line 210 in src/libraries/System.Linq/src/System/Linq/Join.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Debug Mono_MiniJIT_LibrariesTests)

src/libraries/System.Linq/src/System/Linq/Join.cs#L210

src/libraries/System.Linq/src/System/Linq/Join.cs(210,24): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})' that could not be resolved

Check failure on line 210 in src/libraries/System.Linq/src/System/Linq/Join.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Release AllSubsets_Mono_LLVMAOT)

src/libraries/System.Linq/src/System/Linq/Join.cs#L210

src/libraries/System.Linq/src/System/Linq/Join.cs(210,24): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})' that could not be resolved

Check failure on line 210 in src/libraries/System.Linq/src/System/Linq/Join.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Debug Mono_MiniJIT_LibrariesTests)

src/libraries/System.Linq/src/System/Linq/Join.cs#L210

src/libraries/System.Linq/src/System/Linq/Join.cs(210,24): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})' that could not be resolved

Check failure on line 210 in src/libraries/System.Linq/src/System/Linq/Join.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Debug Mono_Interpreter_LibrariesTests)

src/libraries/System.Linq/src/System/Linq/Join.cs#L210

src/libraries/System.Linq/src/System/Linq/Join.cs(210,24): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})' that could not be resolved

Check failure on line 210 in src/libraries/System.Linq/src/System/Linq/Join.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Release AllSubsets_Mono)

src/libraries/System.Linq/src/System/Linq/Join.cs#L210

src/libraries/System.Linq/src/System/Linq/Join.cs(210,24): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})' that could not be resolved

Check failure on line 210 in src/libraries/System.Linq/src/System/Linq/Join.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Release NativeAOT_Libraries)

src/libraries/System.Linq/src/System/Linq/Join.cs#L210

src/libraries/System.Linq/src/System/Linq/Join.cs(210,24): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})' that could not be resolved

Check failure on line 210 in src/libraries/System.Linq/src/System/Linq/Join.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Debug Mono_MiniJIT_LibrariesTests)

src/libraries/System.Linq/src/System/Linq/Join.cs#L210

src/libraries/System.Linq/src/System/Linq/Join.cs(210,24): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})' that could not be resolved

Check failure on line 210 in src/libraries/System.Linq/src/System/Linq/Join.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-arm64 Release NativeAOT_Libraries)

src/libraries/System.Linq/src/System/Linq/Join.cs#L210

src/libraries/System.Linq/src/System/Linq/Join.cs(210,24): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})' that could not be resolved

Check failure on line 210 in src/libraries/System.Linq/src/System/Linq/Join.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Debug AllSubsets_Mono_LLVMAOT)

src/libraries/System.Linq/src/System/Linq/Join.cs#L210

src/libraries/System.Linq/src/System/Linq/Join.cs(210,24): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})' that could not be resolved

Check failure on line 210 in src/libraries/System.Linq/src/System/Linq/Join.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm Debug AllSubsets_CoreCLR_ReleaseRuntimeLibs)

src/libraries/System.Linq/src/System/Linq/Join.cs#L210

src/libraries/System.Linq/src/System/Linq/Join.cs(210,24): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})' that could not be resolved

Check failure on line 210 in src/libraries/System.Linq/src/System/Linq/Join.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-arm Debug AllSubsets_CoreCLR_ReleaseRuntimeLibs)

src/libraries/System.Linq/src/System/Linq/Join.cs#L210

src/libraries/System.Linq/src/System/Linq/Join.cs(210,24): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})' that could not be resolved

Check failure on line 210 in src/libraries/System.Linq/src/System/Linq/Join.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-x64 Debug AllSubsets_CoreCLR)

src/libraries/System.Linq/src/System/Linq/Join.cs#L210

src/libraries/System.Linq/src/System/Linq/Join.cs(210,24): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})' that could not be resolved

Check failure on line 210 in src/libraries/System.Linq/src/System/Linq/Join.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-x64 Debug CoreCLR_Libraries)

src/libraries/System.Linq/src/System/Linq/Join.cs#L210

src/libraries/System.Linq/src/System/Linq/Join.cs(210,24): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})' that could not be resolved

Check failure on line 210 in src/libraries/System.Linq/src/System/Linq/Join.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-arm64 Debug AllSubsets_CoreCLR_ReleaseRuntimeLibs)

src/libraries/System.Linq/src/System/Linq/Join.cs#L210

src/libraries/System.Linq/src/System/Linq/Join.cs(210,24): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})' that could not be resolved

Check failure on line 210 in src/libraries/System.Linq/src/System/Linq/Join.cs

View check run for this annotation

Azure Pipelines / dotnet-linker-tests (Build linux-x64 release Runtime_Release)

src/libraries/System.Linq/src/System/Linq/Join.cs#L210

src/libraries/System.Linq/src/System/Linq/Join.cs(210,24): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})' that could not be resolved

Check failure on line 210 in src/libraries/System.Linq/src/System/Linq/Join.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Debug AllSubsets_CoreCLR)

src/libraries/System.Linq/src/System/Linq/Join.cs#L210

src/libraries/System.Linq/src/System/Linq/Join.cs(210,24): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})' that could not be resolved

Check failure on line 210 in src/libraries/System.Linq/src/System/Linq/Join.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Debug CoreCLR_Libraries)

src/libraries/System.Linq/src/System/Linq/Join.cs#L210

src/libraries/System.Linq/src/System/Linq/Join.cs(210,24): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})' that could not be resolved

Check failure on line 210 in src/libraries/System.Linq/src/System/Linq/Join.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Debug Libraries_CheckedCoreCLR)

src/libraries/System.Linq/src/System/Linq/Join.cs#L210

src/libraries/System.Linq/src/System/Linq/Join.cs(210,24): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})' that could not be resolved

Check failure on line 210 in src/libraries/System.Linq/src/System/Linq/Join.cs

View check run for this annotation

Azure Pipelines / dotnet-linker-tests (Build osx-x64 release Runtime_Release)

src/libraries/System.Linq/src/System/Linq/Join.cs#L210

src/libraries/System.Linq/src/System/Linq/Join.cs(210,24): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})' that could not be resolved

Check failure on line 210 in src/libraries/System.Linq/src/System/Linq/Join.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Debug CoreCLR_Libraries)

src/libraries/System.Linq/src/System/Linq/Join.cs#L210

src/libraries/System.Linq/src/System/Linq/Join.cs(210,24): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})' that could not be resolved

Check failure on line 210 in src/libraries/System.Linq/src/System/Linq/Join.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Debug Libraries_CheckedCoreCLR)

src/libraries/System.Linq/src/System/Linq/Join.cs#L210

src/libraries/System.Linq/src/System/Linq/Join.cs(210,24): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})' that could not be resolved

Check failure on line 210 in src/libraries/System.Linq/src/System/Linq/Join.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-arm64 Debug AllSubsets_CoreCLR)

src/libraries/System.Linq/src/System/Linq/Join.cs#L210

src/libraries/System.Linq/src/System/Linq/Join.cs(210,24): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})' that could not be resolved

Check failure on line 210 in src/libraries/System.Linq/src/System/Linq/Join.cs

View check run for this annotation

Azure Pipelines / runtime

src/libraries/System.Linq/src/System/Linq/Join.cs#L210

src/libraries/System.Linq/src/System/Linq/Join.cs(210,24): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})' that could not be resolved

Check failure on line 210 in src/libraries/System.Linq/src/System/Linq/Join.cs

View check run for this annotation

Azure Pipelines / runtime

src/libraries/System.Linq/src/System/Linq/Join.cs#L210

src/libraries/System.Linq/src/System/Linq/Join.cs(210,24): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})' that could not be resolved

Check failure on line 210 in src/libraries/System.Linq/src/System/Linq/Join.cs

View check run for this annotation

Azure Pipelines / runtime-dev-innerloop (Build linux-x64 debug Libraries_WithPackages)

src/libraries/System.Linq/src/System/Linq/Join.cs#L210

src/libraries/System.Linq/src/System/Linq/Join.cs(210,24): error CS1574: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has cref attribute 'RightJoin{TOuter, TInner, TKey, TResult}(IEnumerable{TOuter}, IEnumerable{TInner}, Func{TOuter, TKey}, Func{TInner, TKey}, Func{TOuter?, TInner, TResult}, IEqualityComparer{TKey})' that could not be resolved
/// For more information, see <see href="/dotnet/csharp/linq/standard-query-operators/join-operations">Join operations</see>.
/// </para>
/// </remarks>
Expand Down
6 changes: 2 additions & 4 deletions src/libraries/System.Linq/src/System/Linq/LeftJoin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ namespace System.Linq
public static partial class Enumerable
{
/// <summary>
/// Correlates the elements of two sequences based on matching keys; elements of the first sequence are returned regardless of whether matching elements are found in the second sequence.
/// The default equality comparer is used to compare keys.
/// Correlates the elements of two sequences based on matching keys. The default equality comparer is used to compare keys.
/// </summary>
/// <param name="outer">The first sequence to join.</param>
/// <param name="inner">The sequence to join to the first sequence.</param>
Expand Down Expand Up @@ -111,8 +110,7 @@ public static IEnumerable<TResult> LeftJoin<TOuter, TInner, TKey, TResult>(this
LeftJoin(outer, inner, outerKeySelector, innerKeySelector, resultSelector, comparer: null);

/// <summary>
/// Correlates the elements of two sequences based on matching keys; elements of the first sequence are returned regardless of whether matching elements are found in the second sequence.
/// The default equality comparer is used to compare keys.
/// Correlates the elements of two sequences based on matching keys. A specified <see cref="IEqualityComparer{T}" /> is used to compare keys.
/// </summary>
/// <param name="outer">The first sequence to join.</param>
/// <param name="inner">The sequence to join to the first sequence.</param>
Expand Down
6 changes: 2 additions & 4 deletions src/libraries/System.Linq/src/System/Linq/RightJoin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ namespace System.Linq
public static partial class Enumerable
{
/// <summary>
/// Correlates the elements of two sequences based on matching keys; elements of the second sequence are returned regardless of whether matching elements are found in the first sequence.
/// The default equality comparer is used to compare keys.
/// Correlates the elements of two sequences based on matching keys. The default equality comparer is used to compare keys.
/// </summary>
/// <param name="outer">The first sequence to join.</param>
/// <param name="inner">The sequence to join to the first sequence.</param>
Expand Down Expand Up @@ -110,8 +109,7 @@ public static IEnumerable<TResult> RightJoin<TOuter, TInner, TKey, TResult>(this
RightJoin(outer, inner, outerKeySelector, innerKeySelector, resultSelector, comparer: null);

/// <summary>
/// Correlates the elements of two sequences based on matching keys; elements of the second sequence are returned regardless of whether matching elements are found in the first sequence.
/// The default equality comparer is used to compare keys.
/// Correlates the elements of two sequences based on matching keys. A specified <see cref="IEqualityComparer{T}" /> is used to compare keys.
/// </summary>
/// <param name="outer">The first sequence to join.</param>
/// <param name="inner">The sequence to join to the first sequence.</param>
Expand Down
Loading