using Common.Extensions; using Common.Extensions.Lambda; using NPOI.SS.Formula.Functions; using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Linq.Expressions; using System.Reflection; namespace Common.Helpers { /// /// List转成Tree /// 李玉宝新增于2016-10-09 19:54:07 /// public static class GenericHelpers { public static string ArrayToString(dynamic data, string Str) { string resStr = Str; foreach (var item in data) { if (resStr != "") { resStr += ","; } if (item is string) { resStr += item; } else { resStr += item.Value; } } return resStr; } public static bool Equal(this T x, T y) { return ((IComparable)(x)).CompareTo(y) == 0; } #region ToDictionary /// /// 将实体指定的字段写入字典 /// /// /// /// /// public static Dictionary ToDictionary(this T t, Expression> expression) where T : class { Dictionary dic = new Dictionary(); string[] fields = expression.GetExpressionToArray(); PropertyInfo[] properties = expression == null ? t.GetType().GetProperties() : t.GetType().GetProperties().Where(x => fields.Contains(x.Name)).ToArray(); foreach (var property in properties) { var value = property.GetValue(t, null); dic.Add(property.Name, value != null ? value.ToString() : ""); } return dic; } public static Dictionary ToDictionary(this TInterface t, Dictionary dic = null) where T : class, TInterface { if (dic == null) dic = new Dictionary(); var properties = typeof(T).GetProperties(); foreach (var property in properties) { var value = property.GetValue(t, null); if (value == null) continue; dic.Add(property.Name, value != null ? value.ToString() : ""); } return dic; } #endregion public static DataTable ToDataTable(this IEnumerable source, Expression> columns = null, bool contianKey = true) { DataTable dtReturn = new DataTable(); if (source == null) return dtReturn; PropertyInfo[] oProps = typeof(T).GetProperties() .Where(x => x.PropertyType.Name != "List`1").ToArray(); if (columns != null) { string[] columnArray = columns.GetExpressionToArray(); oProps = oProps.Where(x => columnArray.Contains(x.Name)).ToArray(); } //移除自增主键 PropertyInfo keyType = oProps.GetKeyProperty();// oProps.GetKeyProperty()?.PropertyType; if (!contianKey && keyType != null && (keyType.PropertyType == typeof(int) || keyType.PropertyType == typeof(long))) { oProps = oProps.Where(x => x.Name != keyType.Name).ToArray(); } foreach (var pi in oProps) { var colType = pi.PropertyType; if ((colType.IsGenericType) && (colType.GetGenericTypeDefinition() == typeof(Nullable<>))) { colType = colType.GetGenericArguments()[0]; } dtReturn.Columns.Add(new DataColumn(pi.Name, colType)); } foreach (var rec in source) { var dr = dtReturn.NewRow(); foreach (var pi in oProps) { dr[pi.Name] = pi.GetValue(rec, null) == null ? DBNull.Value : pi.GetValue (rec, null); } dtReturn.Rows.Add(dr); } return dtReturn; } } }