You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Executes the query and returns its result as a <see cref="HashSet{T}"/>.
2419
2422
/// </summary>
2423
+
/// <remarks>
2424
+
/// Note that this method still allocates an intermediate <see cref="List{T}"/> instance from which the result is created.
2425
+
/// </remarks>
2420
2426
/// <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> to return a HashSet from.</param>
2421
2427
/// <param name="comparer">The <see cref="IEqualityComparer{T}"/> implementation to use when comparing values in the set, or null to use the default <see cref="EqualityComparer{T}"/> implementation for the set type.</param>
2422
2428
/// <param name="cancellationToken">A cancellation token that can be used to cancel the work.</param>
/// Executes the query and returns its result as a <see cref="Dictionary{TKey, TValue}" /> according to a specified key selector function and a comparer.
2473
2482
/// </summary>
2483
+
/// <remarks>
2484
+
/// Note that this method still allocates an intermediate <see cref="List{T}"/> instance from which the result is created.
2485
+
/// </remarks>
2474
2486
/// <typeparam name="TSource">The type of the elements of <paramref name="source" /></typeparam>
2475
2487
/// <typeparam name="TKey">The type of the key returned by <paramref name="keySelector" /></typeparam>
2476
2488
/// <param name="source">An <see cref="T:System.Linq.IQueryable`1" /> to return a Dictionary from.</param>
/// Executes the query and returns its result as a <see cref="Dictionary{TKey, TValue}" /> according to a specified key selector function and an element selector function.
2491
2503
/// </summary>
2504
+
/// <remarks>
2505
+
/// Note that this method still allocates an intermediate <see cref="List{T}"/> instance from which the result is created.
2506
+
/// </remarks>
2492
2507
/// <typeparam name="TSource">The type of the elements of <paramref name="source" /></typeparam>
2493
2508
/// <typeparam name="TKey">The type of the key returned by <paramref name="keySelector" /></typeparam>
2494
2509
/// <typeparam name="TElement">The type of the value returned by <paramref name="elementSelector" />.</typeparam>
/// Executes the query and returns its result as a <see cref="Dictionary{TKey, TValue}" /> according to a specified key selector function, a comparer, and an element selector function.
2510
2525
/// </summary>
2526
+
/// <remarks>
2527
+
/// Note that this method still allocates an intermediate <see cref="List{T}"/> instance from which the result is created.
2528
+
/// </remarks>
2511
2529
/// <typeparam name="TSource">The type of the elements of <paramref name="source" /></typeparam>
2512
2530
/// <typeparam name="TKey">The type of the key returned by <paramref name="keySelector" /></typeparam>
2513
2531
/// <typeparam name="TElement">The type of the value returned by <paramref name="elementSelector" />.</typeparam>
0 commit comments