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
+8-4
Original file line number
Diff line number
Diff line change
@@ -1360,18 +1360,20 @@ public static IQueryable<TSource> Page<TSource>([NotNull] this IQueryable<TSourc
1360
1360
/// <param name="source">The IQueryable to return elements from.</param>
1361
1361
/// <param name="page">The page to return.</param>
1362
1362
/// <param name="pageSize">The number of elements per page.</param>
1363
+
/// <param name="rowCount">If this optional parameter has been defined, this value is used as the RowCount instead of executing a Linq `Count()`.</param>
@@ -1387,18 +1389,20 @@ public static PagedResult PageResult([NotNull] this IQueryable source, int page,
1387
1389
/// <param name="source">The IQueryable to return elements from.</param>
1388
1390
/// <param name="page">The page to return.</param>
1389
1391
/// <param name="pageSize">The number of elements per page.</param>
1392
+
/// <param name="rowCount">If this optional parameter has been defined, this value is used as the RowCount instead of executing a Linq `Count()`.</param>
0 commit comments