欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  技术分享

Asp.Net MVC Grid 使用方法_MVC4 IEnumerable显示大数据

程序员文章站 2022-02-02 20:30:37
...

简介

数据的显示现在已经成为报告的重要组成部分、当你有大量的数据、或者你想以可视化方式来展现数

那么本文会帮助你实现该功能、使用 IEnumerable<Model> 在你的表示层来简化数据展现过程

先给大家看一下程序运行的效果、非常不错的展示数据的方法

Asp.Net MVC Grid 使用方法_MVC4 IEnumerable显示大数据

源代码

你只需要引用添加 ReportContro l组件后、直接使用如下代码:


@Model.ReportWithPivot("", "ShopName", 
	"SellingPrice", AggregateFunction.Sum, 
	"ItemType", "ItemName")
请注意:你的模型应该是 IEnumerable 或 IEnumerable 的唯一derrived


ReportWithPivot 是一个还有扩展方法的 IEnumerable 对象、所以就需要 RowField 的数据字段、最后返回HTML表格

代码如下:


public static HtmlString ReportWithPivot<T>(this IEnumerable<T> source, 
	string cssClass, string rowField, string dataField, 
	AggregateFunction aggregate, 
	params string[] columnFields) where T : class
{
	DataTable dt = source.ToDataTable();
	return dt.ReportWithPivot(cssClass, rowField, 
		dataField, aggregate, columnFields);
}

public static HtmlString ReportWithPivot(this DataTable source, 
	string cssClass, string rowField, string dataField, 
	AggregateFunction aggregate, params string[] columnFields)
{
	Pivot p = new Pivot(source);
	DataTable dt = p.PivotData(rowField, dataField, 
		aggregate, columnFields);
	return dt.Report(cssClass, columnFields.Length, 
		dt.Columns.Cast<DataColumn>()
		.Select(x => x.ColumnName)
		.ToArray());
} 

上面贴出了最重要的部分代码、如果需要查看更多内容的朋友可以直接下载我上传的源代码

里面讲解更为详细、源代码下载链接: http://dwtedx.com/download.html?bdkey=s/1nt9LHqh 密码: t0e2