-
Notifications
You must be signed in to change notification settings - Fork 0
/
Extensions.cs
229 lines (199 loc) · 8.2 KB
/
Extensions.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
using ClosedXML;
using ClosedXML.Excel;
using DocumentFormat.OpenXml;
using DocumentFormat.OpenXml.EMMA;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.Data;
using System.Reflection;
namespace EazyExcel
{
public static class Extensions
{
/// <summary>
/// build an excel file and save it to disk
/// </summary>
/// <param name="filePathAndName"></param>
/// <param name="sheetName"></param>
public static void ToExcel<T>(this IEnumerable<T> @this, string filePathAndName = "SampleWorkbook.xlsx", string sheetName = "Sample Sheet")
{
using var workbook = new XLWorkbook();
using var mem = new MemoryStream();
var worksheet = workbook.Worksheets.Add(sheetName);
worksheet.Cell(1, 1).InsertTable(@this);
//worksheet.Columns().AdjustToContents();
workbook.SaveAs(filePathAndName);
}
/// <summary>
/// build an excel file as stream
/// </summary>
/// <param name="mem"></param>
/// <param name="sheetName"></param>
public static void ToExcel<T>(this IEnumerable<T> @this, Stream mem, string sheetName = "Sample Sheet")
{
using var workbook = new XLWorkbook();
var worksheet = workbook.Worksheets.Add(sheetName);
worksheet.Cell(1, 1).InsertTable(@this);
//worksheet.Columns().AdjustToContents();
workbook.SaveAs(mem);
}
public static IXLWorkbook ToExcelWorkbook(this byte[] source)
{
var result = new XLWorkbook(new MemoryStream(source));
return result;
}
public static List<T> ToList<T>(this IXLWorksheet ws) where T : new()
{
var result = new List<T>();
var props = typeof(T).GetProperties(BindingFlags.Public | BindingFlags.Instance);
var tits = new List<(string, int, PropertyInfo)>();
for (int i = 0; i < props.Count(); i++)
{
var contit = ws.Cell(1, i + 1).Value?.ToString()!;
var t = props.SingleOrDefault(n => n.Name == contit);
if (t is not null)
tits.Add((contit, i + 1, t));
}
for (int i = 2; i <= ws.LastRowUsed().RowNumber(); i++)
{
T temp = new();
var c = false;
foreach (var tit in tits)
{
var fh = ws.Cell(i, tit.Item2).Value;
if (TryChangeType(fh, Nullable.GetUnderlyingType(tit.Item3.PropertyType) ?? tit.Item3.PropertyType, out var obje))
{
c = true;
tit.Item3.SetValue(temp, obje);
}
}
if (c)
result.Add(temp);
}
return result;
}
static bool TryChangeType(object? value, Type conversionType, out object result)
{
try
{
if (conversionType.IsEnum)
{
result = Enum.Parse(conversionType, value.ToString());
}
else
result = Convert.ChangeType(value, conversionType);
return true;
}
catch
{
result = null;
return false;
}
}
public static DataTable CreateDataTableFromAnyCollection<T>(IEnumerable<T> list)
{
Type type = typeof(T);
var properties = type.GetProperties();
DataTable dataTable = new DataTable();
foreach (PropertyInfo info in properties)
{
dataTable.Columns.Add(new DataColumn(info.Name, Nullable.GetUnderlyingType(info.PropertyType) ?? info.PropertyType));
}
foreach (T entity in list)
{
object[] values = new object[properties.Length];
for (int i = 0; i < properties.Length; i++)
{
values[i] = properties[i].GetValue(entity, null);
}
dataTable.Rows.Add(values);
}
return dataTable;
}
/// <summary>
/// build an excel file as stream
/// </summary>
/// <param name="mem"></param>
/// <param name="sheetName"></param>
public static void ToExcelTable<T>(this IEnumerable<T> @this, Stream mem, string sheetName = "Sample Sheet")
{
using var workbook = new XLWorkbook();
var worksheet = workbook.Worksheets.Add(sheetName);
var properties = (typeof(T)).GetProperties()
.Select(a => new
{
Attribute = (typeof(T).GetProperty(a.Name).GetCustomAttributes(false).Where(x => x.GetType().Name == nameof(ColumnNameOrderAttribute)).FirstOrDefault() as ColumnNameOrderAttribute) ?? new ColumnNameOrderAttribute(a.Name, 0),
Property = a
})
.OrderBy(a => a.Attribute.Order)
.ToList();
DataTable dataTable = new DataTable();
foreach (var info in properties)
{
string displayName = "";
if (info.Attribute != null && info.Attribute.ResourceType != null)
{
var resourceType = (info.Attribute.ResourceType != null) ? (Type)info.Attribute.ResourceType : null;
var decorationResx = new ComponentResourceManager(resourceType);
displayName = decorationResx.GetString(info.Attribute.DisplayName);
if (string.IsNullOrEmpty(displayName))
{
displayName = decorationResx.GetString(info.Attribute.DisplayName.Replace("_", " "));
}
}
else
{
displayName = info.Attribute.DisplayName;
}
if (info.Property.PropertyType.BaseType == typeof(Enum))
{
dataTable.Columns.Add(new DataColumn(displayName));
}
else
dataTable.Columns.Add(new DataColumn(displayName,
Nullable.GetUnderlyingType(info.Property.PropertyType) ?? info.Property.PropertyType));
}
foreach (var entity in @this)
{
object[] values = new object[properties.Count];
for (int i = 0; i < properties.Count; i++)
{
if (properties[i].Property.PropertyType.BaseType == typeof(Enum))
{
var enumValue = GetDescription(properties[i].Property.PropertyType, properties[i].Property.GetValue(entity, null).ToString()) ?? properties[i].Property.GetValue(entity, null).ToString();
values[i] = enumValue;
}
else
{
values[i] = properties[i].Property.GetValue(entity, null);
}
}
dataTable.Rows.Add(values);
}
worksheet.Cell(1, 1).InsertTable(dataTable);
//worksheet.Columns().AdjustToContents();
workbook.SaveAs(mem);
}
static string GetDescription(Type enumType, string field)
{
FieldInfo fieldInfo = enumType.GetField(field);
if (fieldInfo == null)
return string.Empty;
foreach (var attribute in fieldInfo.GetCustomAttributes())
{
if (attribute == null)
continue;
if (attribute is DescriptionAttribute descAtt)
return descAtt.Description;
else if (attribute.ToString().IndexOf("Display", StringComparison.Ordinal) > 0)
{
var prop = attribute.GetType().GetProperty("Name");
if (prop == null)
continue;
return Convert.ToString(prop.GetValue(attribute));
}
}
return null;
}
}
}