112  
csharp
 
RU EN
May 16, 2024

You have been doing pagination wrong in .NET 6

Автор:
Источник:
Просмотров:
4586
You have been doing pagination wrong in .NET 6 favorites 0

Pagination is in front of us everyday yet we take it for granted kind of like we do with most things. It’s what chunks huge lists of data (blog posts, articles, products) into pages so we can navigate through data.

This is how you did pagination until this point.

Pagination

using System; public class Article {     public int Id;     public string Title;     public string Content;     public int AuthorId;          public List<Article> GetArticles()     {         return new List<Article> {             new Article {Id = 1, Title = "Best title one", Content = "Amazing content", AuthorId = 1},             new Article {Id = 2, Title = "Another title", Content = "More amazing content", AuthorId = 1},             new Article {Id = 3, Title = "Unicorns", Content = "Even more amazing content", AuthorId = 1},             new Article {Id = 4, Title = "Best title one", Content = "Amazing content", AuthorId = 1},             new Article {Id = 5, Title = "Another title", Content = "More amazing content", AuthorId = 1},             new Article {Id = 6, Title = "Unicorns", Content = "Even more amazing content", AuthorId = 1},             new Article {Id = 7, Title = "Best title one", Content = "Amazing content", AuthorId = 1},             new Article {Id = 8, Title = "Another title", Content = "More amazing content", AuthorId = 1},             new Article {Id = 9, Title = "Unicorns", Content = "Even more amazing content", AuthorId = 1},             new Article {Id = 10, Title = "Best title one", Content = "Amazing content", AuthorId = 1},             new Article {Id = 11, Title = "Another title", Content = "More amazing content", AuthorId = 1},             new Article {Id = 12, Title = "Unicorns", Content = "Even more amazing content", AuthorId = 1},         };     } } public class Program {     public static void Main()     {         List<Article> articles = new Article().GetArticles();         int pageNumber = 1;         int itemsPerPage = 5;         IEnumerable<Article> page = articles.Skip((pageNumber - 1) * itemsPerPage).Take(itemsPerPage);         Console.WriteLine($"Page: {pageNumber}");         foreach(Article article in page)         {             Console.WriteLine($"    Id: {article.Id}, Title:{article.Title}, Content:{article.Content}, AuthorId:{article.AuthorId}");         }     } }

And now this is how you can achieve the same result but in a more readable way using the Chunk method.

Chunk

using System; public class Article {     public int Id;     public string Title;     public string Content;     public int AuthorId;          public List<Article> GetArticles()     {         return new List<Article> {             new Article {Id = 1, Title = "Best title one", Content = "Amazing content", AuthorId = 1},             new Article {Id = 2, Title = "Another title", Content = "More amazing content", AuthorId = 1},             new Article {Id = 3, Title = "Unicorns", Content = "Even more amazing content", AuthorId = 1},             new Article {Id = 4, Title = "Best title one", Content = "Amazing content", AuthorId = 1},             new Article {Id = 5, Title = "Another title", Content = "More amazing content", AuthorId = 1},             new Article {Id = 6, Title = "Unicorns", Content = "Even more amazing content", AuthorId = 1},             new Article {Id = 7, Title = "Best title one", Content = "Amazing content", AuthorId = 1},             new Article {Id = 8, Title = "Another title", Content = "More amazing content", AuthorId = 1},             new Article {Id = 9, Title = "Unicorns", Content = "Even more amazing content", AuthorId = 1},             new Article {Id = 10, Title = "Best title one", Content = "Amazing content", AuthorId = 1},             new Article {Id = 11, Title = "Another title", Content = "More amazing content", AuthorId = 1},             new Article {Id = 12, Title = "Unicorns", Content = "Even more amazing content", AuthorId = 1},         };     } } public class Program {     public static void Main()     {         List<Article> articles = new Article().GetArticles();         int pageNumber = 1;         int itemsPerPage = 5;         IEnumerable<Article[]> allPages = articles.Chunk(itemsPerPage);         Console.WriteLine($"Page: {pageNumber}");                 foreach(Article article in allPages.ElementAt(pageNumber - 1))         {             Console.WriteLine($"    Id: {article.Id}, Title:{article.Title}, Content:{article.Content}, AuthorId:{article.AuthorId}");         }     } }

There’s nothing wrong with using the first method to do pagination. The Chunk method is a new way of doing achieving the same result but with a cleared code. It takes only one parameter, the maximum size of each chunk (largest numbers of items per page). Is important to note that the Chunk method is only available in .NET 6.

Conclusion

This is another way to do things, another tool in your arsenal so you can use both. 

Похожее
Aug 22, 2021
The following are a set of best practices for using the HttpClient object in .NET Core when communicating with web APIs. Note that probably not all practices would be recommended in all situations. There can always be good reasons to...
24 марта 2024 г.
Автор: Иван Якимов
Недавно я натолкнулся в нашем коде на использование пакета MediatR. Это заинтересовало меня. Почему я должен использовать MediatR? Какие преимущества он мне предоставляет? Здесь я собираюсь рассмотреть эти вопросы. Как пользоваться MediatR На базовом уровне использование MediatR очень просто. Сначала...
Jan 7, 2024
Author: Sebastian Stupak
Few days ago I stopped myself while writing code. I wrote my LINQ filtering wrong. items.Where(x => x > 0).Any(); (Obviously, it’s a pseudo code) I realized my mistake immediately, changed the code, and went on with my day. Then...
Jan 1, 2023
Author: Daniel Kreider
Here’s the simple step-by-step guide that will teach you how to build and code a generic repository. There are oodles of design patterns. Some of these design patterns are floating about on antique blogs full of mad logic. They’re ridiculous...
Написать сообщение
Тип
Почта
Имя
*Сообщение
RSS
Если вам понравился этот сайт и вы хотите меня поддержать, вы можете
Boosty
Donate to support the project
GitHub account
GitHub profile
Complete your gift to make an impact