RU EN
May 16, 2024

You have been doing pagination wrong in .NET 6

Автор:
Источник:
Просмотров:
4585
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. 

Похожее
Jan 1, 2023
Author: Matt Eland
New and old ways of creating your own exceptions in dotnet with C# 11 and .NET 7. Let’s talk about building custom exceptions in C# code and why you’d want to do that. We’ll cover the traditional way as well...
Apr 24, 2022
Author: Lucas Diogo
A practice approach to creating stable software. Don’t make your software unstable like a house of cards, solidify it. There are five principles to follow when we write code with object-oriented programming to make it more readable and maintainable if...
Feb 6
The way of calculating amount of memory occupied by some object in C# .NET. Introduction C#.NET is a high-level, multipurpose modern language with only two flaws compared to C++: generics and sizeof operator. Anyone who tried using generics in C#...
Nov 11, 2024
Author: Jeslur Rahman
SOLID principles make it easy for a developer to write easily extendable code and avoid common coding errors. These principles were introduced by Robert C. Martin, and they have become a fundamental part of object-oriented programming. In the context of...
Написать сообщение
Тип
Почта
Имя
*Сообщение
Complete your gift to make an impact