public static IList<T> ConvertTo<T>(DataTable table)
{
if (table == null)
{
return null;
}
List<DataRow> rows = new List<DataRow>();
foreach (DataRow row in table.Rows)
{
rows.Add(row);
}
return ConvertTo<T>(rows);
}
public static T ConvertItem<T>(DataTable table)
{
T obj = default(T);
if (table != null && table.Rows.Count > 0)
{
obj = CreateItem<T>(table.Rows[0]);
}
return obj;
}
public static T CreateItem<T>(DataRow row)
{
T obj = default(T);
if (row != null)
{
obj = Activator.CreateInstance<T>();
Type entityType = typeof(T);
PropertyInfo[] properties = entityType.GetProperties();
for (int i = 0; i < properties.Length; i++)
{
object[] customAttributes = properties[i].GetCustomAttributes(typeof(ColumnAttributes), false);
ColumnAttributes dataField = null;
if (null != customAttributes && customAttributes.Length > 0 && null != (dataField = customAttributes[0] as ColumnAttributes))
{
if (row.Table.Columns.Contains(dataField.FieldName) && !row[dataField.FieldName].GetType().FullName.Equals("System.DBNull"))
{
properties[i].SetValue(obj, row[dataField.FieldName], null);
}
}
}
}
return obj;
}
To, co teraz możemy sobie tylko wyobrazić, to że musimy robić coś, co musimy zebrać śmieci?Konwertuj DataTable na ogólną listę?
Myśli?
Dlaczego uważamy, że może być przeciek ?:
Jesteśmy wstanie z błędami pamięci. Jeśli strona nie wymaga logiki biznesowej do użycia tego typu konwersji, proces II6 nie rośnie, ale kiedy trafimy na stronę, która z niego korzysta, rośnie.
Aktualnie otrzymujemy program ANTS Profiler, aby przekazać nam więcej informacji.
co świadczy o przecieku masz? –
Gdzie jest dokładnie ten problem? –
U ywasz nHIbernate? – renegadeMind