将数据库或存储过程的输出表直接导入Excel文件

时间:2016-09-07 21:58:08

标签: c# .net

我已经看过很多关于如何将gridview表输出到excel文件的帖子和示例,但我想知道如何绕过gridview并直接将SQL查询或存储过程从数据库转换为Excel或Powerpoint输出。

这是必需的,因为有许多(20+)报告需要输出到一个Excel(不同的工作表)或一个PowerPoint文件(不同的幻灯片)。我不希望网页循环浏览每个数据库报告,首先在gridview中显示它,然后将其导出到Excel。网页设置将是一个简单的报告列表,用户可以选择,然后单击一个按钮,并以Excel和Ppt格式显示。

如果可能的话,我希望在没有外部图书馆帮助的情况下这样做。

我在Visual Studio 2015中使用C#和ASP。

谢谢。

2 个答案:

答案 0 :(得分:0)

您可以使用bcp命令从存储过程结果中导出excel中的表记录数据。

请查看以下链接。

http://bhavdiptala.blogspot.in/2016/09/output-table-from-database-or-sp.html

答案 1 :(得分:0)

对于任何来这里寻求答案的人,我都尝试了以下方法,并在dotnet core 2.0.3的{​​{1}}中获得了成功

首先创建您的模型类。

entity framework core 2.0.3

然后安装EPPlus Nuget package。 (我使用的是4.0.5版,可能也适用于其他版本。)

public class User
{  
    public string Name { get; set; }  
    public int Address { get; set; }  
    public int ZIP { get; set; }  
    public string Gender { get; set; }  
} 

create Install-Package EPPlus -Version 4.0.5 类,它将包含将数据集转换为Excel行的逻辑。此类与模型类或数据集没有依存关系

ExcelExportHelper

现在可以在要生成excel文件的位置添加此方法,可能是在控制器中的方法。您也可以为存储过程传递参数。 请注意,该方法的返回类型为public class ExcelExportHelper { public static string ExcelContentType { get { return "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"; } } public static DataTable ListToDataTable<T>(List<T> data) { PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(typeof(T)); DataTable dataTable = new DataTable(); for (int i = 0; i < properties.Count; i++) { PropertyDescriptor property = properties[i]; dataTable.Columns.Add(property.Name, Nullable.GetUnderlyingType(property.PropertyType) ?? property.PropertyType); } object[] values = new object[properties.Count]; foreach (T item in data) { for (int i = 0; i < values.Length; i++) { values[i] = properties[i].GetValue(item); } dataTable.Rows.Add(values); } return dataTable; } public static byte[] ExportExcel(DataTable dataTable, string heading = "", bool showSrNo = false, params string[] columnsToTake) { byte[] result = null; using (ExcelPackage package = new ExcelPackage()) { ExcelWorksheet workSheet = package.Workbook.Worksheets.Add(String.Format("{0} Data", heading)); int startRowFrom = String.IsNullOrEmpty(heading) ? 1 : 3; if (showSrNo) { DataColumn dataColumn = dataTable.Columns.Add("#", typeof(int)); dataColumn.SetOrdinal(0); int index = 1; foreach (DataRow item in dataTable.Rows) { item[0] = index; index++; } } // add the content into the Excel file workSheet.Cells["A" + startRowFrom].LoadFromDataTable(dataTable, true); // autofit width of cells with small content int columnIndex = 1; foreach (DataColumn column in dataTable.Columns) { int maxLength; ExcelRange columnCells = workSheet.Cells[workSheet.Dimension.Start.Row, columnIndex, workSheet.Dimension.End.Row, columnIndex]; try { maxLength = columnCells.Max(cell => cell.Value.ToString().Count()); } catch (Exception) //nishanc { maxLength = columnCells.Max(cell => (cell.Value +"").ToString().Length); } //workSheet.Column(columnIndex).AutoFit(); if (maxLength < 150) { //workSheet.Column(columnIndex).AutoFit(); } columnIndex++; } // format header - bold, yellow on black using (ExcelRange r = workSheet.Cells[startRowFrom, 1, startRowFrom, dataTable.Columns.Count]) { r.Style.Font.Color.SetColor(System.Drawing.Color.White); r.Style.Font.Bold = true; r.Style.Fill.PatternType = OfficeOpenXml.Style.ExcelFillStyle.Solid; r.Style.Fill.BackgroundColor.SetColor(Color.Brown); } // format cells - add borders using (ExcelRange r = workSheet.Cells[startRowFrom + 1, 1, startRowFrom + dataTable.Rows.Count, dataTable.Columns.Count]) { r.Style.Border.Top.Style = ExcelBorderStyle.Thin; r.Style.Border.Bottom.Style = ExcelBorderStyle.Thin; r.Style.Border.Left.Style = ExcelBorderStyle.Thin; r.Style.Border.Right.Style = ExcelBorderStyle.Thin; r.Style.Border.Top.Color.SetColor(System.Drawing.Color.Black); r.Style.Border.Bottom.Color.SetColor(System.Drawing.Color.Black); r.Style.Border.Left.Color.SetColor(System.Drawing.Color.Black); r.Style.Border.Right.Color.SetColor(System.Drawing.Color.Black); } // removed ignored columns for (int i = dataTable.Columns.Count - 1; i >= 0; i--) { if (i == 0 && showSrNo) { continue; } if (!columnsToTake.Contains(dataTable.Columns[i].ColumnName)) { workSheet.DeleteColumn(i + 1); } } if (!String.IsNullOrEmpty(heading)) { workSheet.Cells["A1"].Value = heading; // workSheet.Cells["A1"].Style.Font.Size = 20; workSheet.InsertColumn(1, 1); workSheet.InsertRow(1, 1); workSheet.Column(1).Width = 10; } result = package.GetAsByteArray(); } return result; } public static byte[] ExportExcel<T>(List<T> data, string Heading = "", bool showSlno = false, params string[] ColumnsToTake) { return ExportExcel(ListToDataTable<T>(data), Heading, showSlno, ColumnsToTake); } } 。无论执行什么查询,重要的是必须将结果保存在FileContentResult中。

List

更多详细信息,请here