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="keySelector">A string expression to specify the key for each element.</param>
689
+
/// <param name="resultSelector">A string expression to specify a result value from each group.</param>
690
+
/// <param name="equalityComparer">The comparer to use.</param>
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
+
/// <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)");
/// <param name="keySelector">A string expression to specify the key for each element.</param>
830
+
/// <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
+
/// <param name="equalityComparer">The comparer to use.</param>
832
+
/// <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>
1450
+
/// <param name="comparer">The comparer to use.</param>
1451
+
/// <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
+
/// <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>
2428
+
/// <param name="comparer">The comparer to use.</param>
2429
+
/// <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
+
/// <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