anjoy8 / Blog.Core

💖 ASP.NET Core 8.0 全家桶教程,前后端分离后端接口,vue教程姊妹篇,官方文档:
http://apk.neters.club/.doc
Apache License 2.0
5.06k stars 1.38k forks source link

PageModel 优化 #251

Closed gkLeo closed 2 years ago

gkLeo commented 2 years ago

PageModel 中的pageCount 可以自动算出,没有必要每次new的时候进行计算。 public int pageCount => (int)Math.Ceiling((decimal)dataCount / PageSize);

注意:需要将PageSize 设置默认值,否则swagger会报错 public int PageSize { set; get; } = 20;

anjoy8 commented 2 years ago

很棒,可以提交个PR,贡献下代码。

gkLeo commented 2 years ago

PR #252