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
Copy file name to clipboardExpand all lines: src/System.Linq.Dynamic.Core/DynamicQueryableExtensions.cs
+4-37Lines changed: 4 additions & 37 deletions
Original file line number
Diff line number
Diff line change
@@ -690,12 +690,6 @@ public static IQueryable GroupBy([NotNull] this IQueryable source, [NotNull] Par
690
690
/// <param name="equalityComparer">The comparer to use.</param>
691
691
/// <param name="args">An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</param>
692
692
/// <returns>A <see cref="IQueryable"/> where each element represents a projection over a group and its key.</returns>
693
-
/// <example>
694
-
/// <code>
695
-
/// var groupResult1 = queryable.GroupBy("NumberPropertyAsKey", "StringProperty");
696
-
/// var groupResult2 = queryable.GroupBy("new (NumberPropertyAsKey, StringPropertyAsKey)", "new (StringProperty1, StringProperty2)");
@@ -830,12 +818,6 @@ public static IQueryable GroupBy([NotNull] this IQueryable source, [NotNull] Par
830
818
/// <param name="args">An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</param>
831
819
/// <param name="equalityComparer">The comparer to use.</param>
832
820
/// <returns>A <see cref="IQueryable"/> where each element represents a projection over a group and its key.</returns>
833
-
/// <example>
834
-
/// <code>
835
-
/// var groupResult1 = queryable.GroupBy("NumberPropertyAsKey");
836
-
/// var groupResult2 = queryable.GroupBy("new (NumberPropertyAsKey, StringPropertyAsKey)");
/// <param name="ordering">An expression string to indicate values to order by.</param>
1402
-
/// <param name="comparer">The comparer to use to order by.</param>
1384
+
/// <param name="comparer">The comparer to use.</param>
1403
1385
/// <param name="args">An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</param>
1404
1386
/// <returns>A <see cref="IQueryable{T}"/> whose elements are sorted according to the specified <paramref name="ordering"/>.</returns>
@@ -1413,7 +1395,7 @@ public static IOrderedQueryable<TSource> OrderBy<TSource>([NotNull] this IQuerya
1413
1395
/// <typeparam name="TSource">The type of the elements of source.</typeparam>
1414
1396
/// <param name="source">A sequence of values to order.</param>
1415
1397
/// <param name="ordering">An expression string to indicate values to order by.</param>
1416
-
/// <param name="comparer">The comparer to use to order by.</param>
1398
+
/// <param name="comparer">The comparer to use.</param>
1417
1399
/// <param name="args">An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</param>
1418
1400
/// <returns>A <see cref="IQueryable{T}"/> whose elements are sorted according to the specified <paramref name="ordering"/>.</returns>
@@ -1450,13 +1432,6 @@ public static IOrderedQueryable OrderBy([NotNull] this IQueryable source, [NotNu
1450
1432
/// <param name="comparer">The comparer to use.</param>
1451
1433
/// <param name="args">An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</param>
1452
1434
/// <returns>A <see cref="IQueryable"/> whose elements are sorted according to the specified <paramref name="ordering"/>.</returns>
1453
-
/// <example>
1454
-
/// <code>
1455
-
/// var resultSingle = queryable.OrderBy("NumberProperty");
1456
-
/// var resultSingleDescending = queryable.OrderBy("NumberProperty DESC");
1457
-
/// var resultMultiple = queryable.OrderBy("NumberProperty, StringProperty DESC");
/// <param name="ordering">An expression string to indicate values to order by.</param>
2379
-
/// <param name="comparer">The comparer to use to order by.</param>
2354
+
/// <param name="comparer">The comparer to use.</param>
2380
2355
/// <param name="args">An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</param>
2381
2356
/// <returns>A <see cref="IOrderedQueryable{T}"/> whose elements are sorted according to the specified <paramref name="ordering"/>.</returns>
@@ -2390,7 +2365,7 @@ public static IOrderedQueryable<TSource> ThenBy<TSource>([NotNull] this IOrdered
2390
2365
/// <typeparam name="TSource">The type of the elements of source.</typeparam>
2391
2366
/// <param name="source">A sequence of values to order.</param>
2392
2367
/// <param name="ordering">An expression string to indicate values to order by.</param>
2393
-
/// <param name="comparer">The comparer to use to order by.</param>
2368
+
/// <param name="comparer">The comparer to use.</param>
2394
2369
/// <param name="args">An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</param>
2395
2370
/// <returns>A <see cref="IOrderedQueryable{T}"/> whose elements are sorted according to the specified <paramref name="ordering"/>.</returns>
@@ -2428,14 +2403,6 @@ public static IOrderedQueryable ThenBy([NotNull] this IOrderedQueryable source,
2428
2403
/// <param name="comparer">The comparer to use.</param>
2429
2404
/// <param name="args">An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</param>
2430
2405
/// <returns>A <see cref="IQueryable"/> whose elements are sorted according to the specified <paramref name="ordering"/>.</returns>
2431
-
/// <example>
2432
-
/// <code>
2433
-
/// var result = queryable.OrderBy("LastName");
2434
-
/// var resultSingle = result.OrderBy("NumberProperty");
2435
-
/// var resultSingleDescending = result.OrderBy("NumberProperty DESC");
2436
-
/// var resultMultiple = result.OrderBy("NumberProperty, StringProperty DESC");
0 commit comments