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: NorthwindCRUD/Controllers/ProductsController.cs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -50,11 +50,11 @@ public ActionResult<ProductDto[]> GetAll()
50
50
/// <summary>
51
51
/// Fetches all products or a page of products based on the provided parameters.
52
52
/// </summary>
53
-
/// <param name="skip">Previously called pageNumber. The number of the page to fetch. If this parameter is not provided, all products are fetched.</param>
54
-
/// <param name="top">Previously called pageSize. The size of the page to fetch. If this parameter is not provided, all products are fetched.</param>
55
-
/// <param name="orderBy">The fields to order by, in the format "field1 asc, field2 desc". If not provided, defaults to no specific order.</param>
53
+
/// <param name="skip">The number of records to skip before starting to fetch the products. If this parameter is not provided, fetching starts from the beginning.</param>
54
+
/// <param name="top">The maximum number of products to fetch. If this parameter is not provided, all products are fetched.</param>
55
+
/// <param name="orderBy">A comma-separated list of fields to order the products by, along with the sort direction (e.g., "field1 asc, field2 desc").</param>
56
56
/// <returns>A PagedResultDto object containing the fetched T and the total record count.</returns>
0 commit comments