ardalis/Result

TranslateResultToActionResult doesn't give PagedInfo

Offen

#71 geöffnet am 09.08.2021

 (5 Kommentare) (3 Reaktionen) (0 zugewiesene Personen)C# (126 Forks)github user discovery
enhancementhelp wantedquestion

Repository-Metriken

Stars
 (1.034 Sterne)
PR-Merge-Metriken
 (Durchschn. Merge 8T 3h) (2 gemergte PRs in 30 T)

Beschreibung

While using TranslateResultToActionResult to return responses in the form of ActionResults, there is no way for the caller to know the details of the pagination.

The reason is because the ToActionResult method in the ResultExtensions class just cares about the "result.GetValue()" and ignores the Pagination details which were fed by the upstream services as shown below:

return Result<IEnumerable<StoryDto>>.Success(pagedStoryDtos).ToPagedResult(pagedInfo);

Is there a way we can modify this behavior so that the caller can see the pagination details too?

Contributor Guide