在 C# 中使用 Dapper 查询数据并导出 Excel

打印 上一主题 下一主题

主题 1002|帖子 1002|积分 3006

1. 配景先容

在项目中,我们经常需要查询数据库中的数据并导出为 Excel 举行分析或存档。本篇文章先容如何在 C# 中使用 Dapper 查询 SQL Server 数据,并通过 EPPlus 天生 Excel 文件,支持 动态对象 (ExpandoObject) 和静态实体对象 的数据导出。
2. 代码结构概览

该实现包罗以下部分:

  • 数据库查询 (DapperHelper.Query):实验 SQL 查询并返回 DynamicParameters 形式的效果。
  • 数据转换 (ExpandoObject):查询效果转换为动态对象。
  • 静态对象列表 (Person):示例数据。
  • Excel 导出 (ExcelHelper.ExportToExcel):将数据转换为 Excel 文件,支持 动态对象和静态对象,自动适配嵌套属性。

3. 代码实现

  1. Dictionary<string, object> keyValuePairs = new();
复制代码


  •  为了方便我们举行多个Sheet和多个数据查询,我这边会把多个数据存储到一个键值对里面,键值对的Key是Sheet的名字,Value是我们查出来的静态或者动态实体内容的集合
3.1 使用 Dapper 查询数据库

  1. public static async Task<IEnumerable<DynamicParameters>> Query(string sql, object? @params = null, int? commandTimeout = null, CommandType? commandType = null)
  2. {
  3.     string ConnStr = AppConfig.SqlLinks;
  4.     using (var con = new SqlConnection(ConnStr))
  5.     {
  6.         var results = await con.QueryAsync(sql, @params, commandTimeout: commandTimeout, commandType: commandType);
  7.         return results.Select(r => new DynamicParameters(r));
  8.     }
  9. }
复制代码


  • 该方法使用 Dapper 查询数据库,并返回 DynamicParameters。
  • 连接字符串从 AppConfig.SqlLinks 获取。
  • 我们在不想创建实体对象的环境下直接选择把内容转化为动态实体类型
3.2 查询 orders 表并转换为动态对象

  1. string sql = "Select * From [1booking].[dbo].[orders] With(NoLock)";
  2. var results = await DapperHelper.Query(sql);
  3. if (results.Count() > 0 && results != null)
  4. {
  5.     var objects = results.Select(r =>
  6.     {
  7.         var expando = new ExpandoObject();
  8.         var dict = (IDictionary<string, object>)expando!;
  9.         foreach (var key in r.ParameterNames)
  10.         {
  11.             dict[key] = r.Get<object>(key);
  12.         }
  13.         return expando;
  14.     });
  15. }
复制代码


  • 查询 orders 表,并转换查询效果为 动态对象 (ExpandoObject)
  • 我们把他转换为动态对象之后,后续就可以使用它来直接展示
  • 把他直接存储键值对中,这个肯定都会存储,我这边就少些一行代码了
3.3 示例:静态对象列表 Person

  1. var people = new List<Person>
  2. {
  3.     new Person
  4.     {
  5.         Id = 1,
  6.         Name = "张三",
  7.         BirthDate = new DateTime(1990, 1, 1),
  8.         Salary = 5000.50m,
  9.         Address = new Address { City = "北京", State = "北京" },
  10.         Info = new Info {A = "2", B = "C"}
  11.     },
  12.     new Person
  13.     {
  14.         Id = 2,
  15.         Name = "李四",
  16.         BirthDate = new DateTime(1985, 5, 12),
  17.         Salary = 8000.75m,
  18.         Address = new Address { City = "上海", State = "上海" },
  19.         Info = new Info {A = "1", B = "B"}
  20.     }
  21. };
复制代码


  • 界说 静态对象 Person,这里都是我的示例,举例阐明的,可以是任何静态对象多层嵌套也是没问题的
  • 把他直接存储键值对中,这个肯定都会存储,我这边就少些一行代码了
3.4 调用 Excel 导出方法

  1. var excelData = ExcelHelper.ExportToExcel<Task>(keyValuePairs);
复制代码


  • 通过 ExcelHelper.ExportToExcel<T> 方法,将 keyValuePairs 导出为 Excel。
  • 在这一步也就是调用我们主要的实现方法,这个方法里面主要是处理Excel和我们的实体区分处理。以实现全自动处理不区分类型
3.5 Excel 导出实现 (ExcelHelper)

  1. public static byte[] ExportToExcel<T>(Dictionary<string, object> dataSets)
  2. {
  3.     // 首先我们不能让我们的集合是空的
  4.     if (dataSets == null || !dataSets.Any())
  5.     {
  6.         throw new ArgumentException("数据列表不能为空");
  7.     }
  8.     // 因为这个分商用版和个人版本,一个收费一个不收费,所以我选择个人使用
  9.     ExcelPackage.LicenseContext = OfficeOpenXml.LicenseContext.NonCommercial;
  10.     // 创建一个处理Excel的生命周期
  11.     using (var package = new ExcelPackage())
  12.     {
  13.         // 这一步也就是我上面所说的,如果有多个集合进行区分Sheet处理不同Sheet存放不同集合数据
  14.         foreach (var dataSet in dataSets)
  15.         {
  16.             var sheetName = dataSet.Key;
  17.             var data = dataSet.Value;
  18.             var worksheet = package.Workbook.Worksheets.Add(sheetName);
  19.             
  20.             if (data is IEnumerable<ExpandoObject> dynamicList)
  21.             {// 这一步主要是处理动态集合元素
  22.                 // 获取动态集合的属性,这里一般动态元素的类型我们是获取不到的都是null
  23.                 var properties = GetAllProperties(dynamicList.FirstOrDefault(), typeof(T));
  24.                 for (int i = 0; i < properties.Count; i++)
  25.                 {
  26.                     // 写入第一行属性名称
  27.                     worksheet.Cells[1, i + 1].Value = properties[i].DisplayName ?? properties[i].PropertyName;
  28.                 }
  29.                 for (int row = 0; row < dynamicList.Count(); row++)
  30.                 {
  31.                     var item = dynamicList.ElementAt(row);
  32.                     for (int col = 0; col < properties.Count; col++)
  33.                     {
  34.                         // 这一步用来处理嵌套属性
  35.                         worksheet.Cells[row + 2, col + 1].Value = GetNestedPropertyValue(item, properties[col].PropertyName);
  36.                     }
  37.                 }
  38.             }
  39.             else if (data is IEnumerable<object> list)
  40.             {// 这一步主要是处理静态集合元素
  41.                 // 获取静态集合的属性,像是静态属性,这里是可以获取到的
  42.                 var properties = GetAllProperties(list.FirstOrDefault(), typeof(T));
  43.                 for (int i = 0; i < properties.Count; i++)
  44.                 {
  45.                     // 写入第一行属性名称
  46.                     worksheet.Cells[1, i + 1].Value = properties[i].DisplayName ?? properties[i].PropertyName;
  47.                 }
  48.                 int row = 2;
  49.                 foreach (var item in list)
  50.                 {
  51.                     for (int col = 0; col < properties.Count; col++)
  52.                     {
  53.                         // 写入内容
  54.                         worksheet.Cells[row, col + 1].Value = GetNestedPropertyValue(item, properties[col].PropertyName);
  55.                     }
  56.                     row++;
  57.                 }
  58.             }
  59.             // 自动调整列宽
  60.             worksheet.Cells.AutoFitColumns();
  61.         }
  62.         // 返回Excel文件的字节数组
  63.         return package.GetAsByteArray();
  64.     }
  65. }
复制代码
 
  1. private static List<PropertyMetadata> GetAllProperties(object obj, Type type = null, string prefix = "")
  2. {
  3.     // 处理 动态属性
  4.     if (obj is IDictionary<string, object> dict)
  5.     {
  6.         // 遍历 ExpandoObject 的键值对
  7.         foreach (var key in dict.Keys)
  8.         {
  9.             // 添加属性元数据(ExpandoObject 没有 PropertyInfo)
  10.             properties.Add(new PropertyMetadata(null, key, key));
  11.         }
  12.     }
  13.     // 处理静态属性
  14.     else
  15.     {
  16.         // 获取类型的公共实例属性
  17.         foreach (var prop in type.GetProperties(BindingFlags.Public | BindingFlags.Instance))
  18.         {
  19.             // 构造属性名称(考虑前缀)
  20.             var propertyName = string.IsNullOrEmpty(prefix) ? prop.Name : $"{prefix}.{prop.Name}";
  21.             // 处理基本类型属性
  22.             if (prop.PropertyType.IsPrimitive || prop.PropertyType == typeof(string) || prop.PropertyType == typeof(DateTime) || prop.PropertyType == typeof(decimal))
  23.             {
  24.                 // 获取显示名称(DisplayNameAttribute)
  25.                 var displayName = prop.GetCustomAttribute<DisplayNameAttribute>()?.DisplayName;
  26.                 // 添加属性元数据
  27.                 properties.Add(new PropertyMetadata(prop, propertyName, displayName));
  28.             }
  29.             // 处理嵌套对象属性
  30.             else if (prop.PropertyType.IsClass)
  31.             {
  32.                 // 递归获取嵌套属性
  33.                 properties.AddRange(GetAllProperties(null, prop.PropertyType, propertyName));
  34.             }
  35.         }
  36.     }
  37.     // 返回属性元数据列表
  38.     return properties;
  39. }
复制代码
  1. /// <summary>
  2. /// 属性名称(包括前缀)
  3. /// </summary>
  4. public string PropertyName { get; }
  5. /// <summary>
  6. /// 属性显示名称(DisplayNameAttribute)
  7. /// </summary>
  8. public string DisplayName { get; }
  9. /// <summary>
  10. /// 构造函数
  11. /// </summary>
  12. /// <param name="propertyInfo">PropertyInfo 对象(如果是基本类型,则为 null)</param>
  13. /// <param name="propertyName">属性名称(包括前缀)</param>
  14. /// <param name="displayName">属性显示名称(DisplayNameAttribute)</param>
  15. public PropertyMetadata(PropertyInfo propertyInfo, string propertyName, string displayName)
  16. {
  17.     PropertyInfo = propertyInfo;
  18.     PropertyName = propertyName;
  19.     DisplayName = displayName;
  20. }
复制代码
 
  1. private static object GetNestedPropertyValue(object obj, string propertyName)
  2. {
  3.     // 分割属性名称(支持嵌套属性)
  4.     var props = propertyName.Split('.');
  5.     // 初始化属性值
  6.     object value = obj;
  7.     // 遍历属性名称
  8.     foreach (var prop in props)
  9.     {
  10.         // 检查属性值是否为空
  11.         if (value == null)
  12.         {
  13.             return null; // 如果属性值为空,则返回 null
  14.         }
  15.         // 处理 动态属性,一般这个区分不了类型,后续可以在写入文档的时候区分类型
  16.         if (value is IDictionary<string, object> dict)
  17.         {
  18.             // 尝试获取属性值
  19.             dict.TryGetValue(prop, out value);
  20.         }
  21.         else // 处理静态属性
  22.         {
  23.             // 获取属性信息
  24.             var propertyInfo = value.GetType().GetProperty(prop);
  25.             // 检查属性是否存在
  26.             if (propertyInfo == null)
  27.             {
  28.                 return null; // 如果属性不存在,则返回 null
  29.             }
  30.             // 获取属性值
  31.             value = propertyInfo.GetValue(value);
  32.         }
  33.     }
  34.     // 返回属性值
  35.     return value;
  36. }
复制代码


  • 自动剖析动态对象和静态对象
  • 支持嵌套对象属性导出
  • 格式化 Excel,自动调整列宽
 3.6 最后输出效果展示



4. 总结

回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

反转基因福娃

论坛元老
这个人很懒什么都没写!
快速回复 返回顶部 返回列表