PDA

View Full Version : سوال: ریختن خروجی کوئری لینک در datatable



majid784
دوشنبه 12 تیر 1391, 16:02 عصر
سلام دوستان
من میخوام خروجی یک دستور لینک رو توی یه DataTable بریزم. برای اینکار چیکار باید بکنم؟

mehrzad_ali
دوشنبه 12 تیر 1391, 17:19 عصر
سلام خروجی تابع لینک رو IEnumerable بزار و از این تابع برای کانورت استاده کن



/// <summary>
/// convert Linq Select To DataTable
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="varlist"></param>
/// <returns></returns>
public DataTable LINQToDataTable<T>(IEnumerable<T> varlist)
{
DataTable dtReturn = new DataTable();
// column names
PropertyInfo[] oProps = null;
if (varlist == null) return dtReturn;

foreach (T rec in varlist)
{
// Use reflection to get property names, to create table, Only first time, others will follow
if (oProps == null)
{
oProps = ((Type)rec.GetType()).GetProperties();
foreach (PropertyInfo pi in oProps)
{
Type colType = pi.PropertyType;
if ((colType.IsGenericType) && (colType.GetGenericTypeDefinition() == typeof(Nullable<>)))
{
colType = colType.GetGenericArguments()[0];
}
dtReturn.Columns.Add(new DataColumn(pi.Name, colType));
}
}
DataRow dr = dtReturn.NewRow();
foreach (PropertyInfo pi in oProps)
{
dr[pi.Name] = pi.GetValue(rec, null) == null ? DBNull.Value : pi.GetValue
(rec, null);
}
dtReturn.Rows.Add(dr);
}
return dtReturn;
}