How to use and display PagedResultDto
Using ASPNet Boilerplate, and returning a pagedResultSetDto with the below code, how do I display the page links? public PagedResultDto<ArticleDto> GetAll() { var articleCount = articleRepository.Count(); var t = articleRepository.GetAllIncluding(x => x.articleImage).Include(x => x.Category).Where( x => x.PublishFrom <= DateTime.Now && x.PublishTo >= DateTime.Now && x.Status == PostStatus.Published && x.IsDeleted == false ).OrderByDescending(x=> x.PublishFrom).ToList(); return new PagedResultDto<ArticleDto> { TotalCount = articleCount, Items = t.MapTo<List<ArticleDto>>() }; } First, take in