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
+19-20Lines changed: 19 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -1283,15 +1283,6 @@ public static IOrderedQueryable<TSource> OrderBy<TSource>([NotNull] this IQuerya
1283
1283
/// <param name="comparer">The comparer to use to order by.</param>
1284
1284
/// <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>
1285
1285
/// <returns>A <see cref="IQueryable{T}"/> whose elements are sorted according to the specified <paramref name="ordering"/>.</returns>
1286
-
/// <example>
1287
-
/// <code>
1288
-
/// <![CDATA[
1289
-
/// var resultSingle = queryable.OrderBy<User>("NumberProperty");
1290
-
/// var resultSingleDescending = queryable.OrderBy<User>("NumberProperty DESC");
1291
-
/// var resultMultiple = queryable.OrderBy<User>("NumberProperty, StringProperty");
@@ -1306,15 +1297,6 @@ public static IOrderedQueryable<TSource> OrderBy<TSource>([NotNull] this IQuerya
1306
1297
/// <param name="comparer">The comparer to use to order by.</param>
1307
1298
/// <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>
1308
1299
/// <returns>A <see cref="IQueryable{T}"/> whose elements are sorted according to the specified <paramref name="ordering"/>.</returns>
1309
-
/// <example>
1310
-
/// <code>
1311
-
/// <![CDATA[
1312
-
/// var resultSingle = queryable.OrderBy<User>("NumberProperty");
1313
-
/// var resultSingleDescending = queryable.OrderBy<User>("NumberProperty DESC");
1314
-
/// var resultMultiple = queryable.OrderBy<User>("NumberProperty, StringProperty");
/// <param name="ordering">An expression string to indicate values to order by.</param>
2233
+
/// <param name="comparer">The comparer to use to order by.</param>
2234
+
/// <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>
2235
+
/// <returns>A <see cref="IOrderedQueryable{T}"/> whose elements are sorted according to the specified <paramref name="ordering"/>.</returns>
/// Performs a subsequent ordering of the elements in a sequence in ascending order according to a key.
2243
+
/// </summary>
2244
+
/// <typeparam name="TSource">The type of the elements of source.</typeparam>
2245
+
/// <param name="source">A sequence of values to order.</param>
2246
+
/// <param name="ordering">An expression string to indicate values to order by.</param>
2247
+
/// <param name="comparer">The comparer to use to order by.</param>
2248
+
/// <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>
2249
+
/// <returns>A <see cref="IOrderedQueryable{T}"/> whose elements are sorted according to the specified <paramref name="ordering"/>.</returns>
0 commit comments