其中包含List <string>的DataTable </string>

时间:2011-05-23 19:56:39

标签: datatable

我正在使用Linq将数据从XML文件返回到DataTable,这是有效的。但现在我正在尝试修改代码以循环访问DataTable。我创建了一个自定义类来建模数据,并在我的模型中有一个List。当我遍历DataTable以显示记录时,它显示System.Collections.Generic.List`1 [System.String]而不是实际数据。我不确定要搜索什么来找到答案。

段:

foreach (DataRow row in tbl.Rows)
{
    myList = row["myList"] + ", " + myList;
}

myList列是List。我希望这是有道理的。

编辑:

public static 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;
    }

1 个答案:

答案 0 :(得分:0)

hobbiesList = (List<string>)row["hobbies"];

foreach (var item in hobbiesList)
{
    hobbies.Add(item.ToString());
}
hobby = string.Join(", ", hobbies.ToArray());
hobbies.Clear();

我必须做以上操作才能让它发挥作用。然后我将业余爱好添加到我的输出数组中。