From 2e32f95c036be5d381001f554dd7a027c6469831 Mon Sep 17 00:00:00 2001 From: Mariksel Azemaj Date: Thu, 11 Nov 2021 02:18:24 +0100 Subject: [PATCH] Corrected a small grammatical error Corrected the sentence from "sort by creating time" to "sort by creation time" --- docs/en/Application-Services.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/Application-Services.md b/docs/en/Application-Services.md index c6108c477e..88b2e20a1e 100644 --- a/docs/en/Application-Services.md +++ b/docs/en/Application-Services.md @@ -434,7 +434,7 @@ These methods are low level methods those can be control how to query entities f * `CreateFilteredQuery` can be overridden to create an `IQueryable` that is filtered by the given input. If your `TGetListInput` class contains any filter, it is proper to override this method and filter the query. It returns the (unfiltered) repository (which is already `IQueryable`) by default. * `ApplyPaging` is used to make paging on the query. If your `TGetListInput` already implements `IPagedResultRequest`, you don't need to override this since the ABP Framework automatically understands it and performs the paging. -* `ApplySorting` is used to sort (order by...) the query. If your `TGetListInput` already implements the `ISortedResultRequest`, ABP Framework automatically sorts the query. If not, it fallbacks to the `ApplyDefaultSorting` which tries to sort by creating time, if your entity implements the standard `IHasCreationTime` interface. +* `ApplySorting` is used to sort (order by...) the query. If your `TGetListInput` already implements the `ISortedResultRequest`, ABP Framework automatically sorts the query. If not, it fallbacks to the `ApplyDefaultSorting` which tries to sort by creation time, if your entity implements the standard `IHasCreationTime` interface. * `GetEntityByIdAsync` is used to get an entity by id, which calls `Repository.GetAsync(id)` by default. * `DeleteByIdAsync` is used to delete an entity by id, which calls `Repository.DeleteAsync(id)` by default.