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
/// <param name="ordering">An expression string to indicate values to order by.</param>
1283
+
/// <param name="comparer">The comparer to use to order by.</param>
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
+
/// <returns>A <see cref="IQueryable{T}"/> whose elements are sorted according to the specified <paramref name="ordering"/>.</returns>
/// Sorts the elements of a sequence in ascending or descending order according to a key.
1293
+
/// </summary>
1294
+
/// <typeparam name="TSource">The type of the elements of source.</typeparam>
1295
+
/// <param name="source">A sequence of values to order.</param>
1296
+
/// <param name="ordering">An expression string to indicate values to order by.</param>
1297
+
/// <param name="comparer">The comparer to use to order by.</param>
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>
1299
+
/// <returns>A <see cref="IQueryable{T}"/> whose elements are sorted according to the specified <paramref name="ordering"/>.</returns>
/// <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