摘要: public class CustomPager { /// <summary> /// 每页行数 /// </summary> public int PageSize { get; set; } /// <summary> /// 总行数 /// </summary> public int Tot 阅读全文
posted @ 2021-04-29 16:17 后跳 阅读(123) 评论(0) 推荐(0) 编辑
摘要: Model Binder(模型绑定器),顾名思义,可以形象的理解为将数据绑定到一个 Model 的工具。这个 Model 是 Action 方法需要用到的某个类型(既可以是方法参数的类型也可以是方法内部对象的类型),要绑定到它上面的值可以来自于多种数据源。 MVC 框架内置默认的 Model Bin 阅读全文
posted @ 2021-04-29 10:09 后跳 阅读(182) 评论(0) 推荐(0) 编辑