我需要将Dictionary<string,List<string>>
内容添加到C#中的数据表中。标题列名称应为Dictionary中的Key
,行应为List<string>
内容。
我怎么能得到它?
代码:
DataTable new_dt = new DataTable();
//Header Columns
foreach (string item in splits)
{
DataColumn col = new DataColumn(item, typeof(System.String));
new_dt.Columns.Add(col);
}
foreach (DataColumn col in new_dt.Columns)
{
//Declare the bound field and allocate memory for the bound field.
BoundField bfield = new BoundField();
//Initalize the DataField value.
bfield.DataField = col.ColumnName;
//Initialize the HeaderText field value.
bfield.HeaderText = col.ColumnName;
//Add the newly created bound field to the GridView.
gvMatrix.Columns.Add(bfield);
}
//Content Loading
foreach (KeyValuePair<string, List<string>> item in _dict)
{
string[] ss = item.Value.ToArray();
foreach (string s in ss)
{
DataRow row = new_dt.NewRow();
row[item.Key] = s;
new_dt.Rows.Add(row);
}
}
gvMatrix.DataSource = new_dt;
gvMatrix.DataBind();
答案 0 :(得分:0)
这应该有效:
Dictionary<string, List<string>> dict = new Dictionary<string, List<string>>();
int rowcount = table.Rows.Count;
int columnCount = table.Columns.Count;
for (int c = 0; c <= columnCount; c++)
{
string columnName = table.Columns[c].ColumnName;
List<string> tempList = new List<string>();
for (int r = 0; r <= rowcount; r++)
{
var row = table.Rows[r];
if (row[c] != DBNull.Value)
tempList.Add((string)row[c]);
else
tempList.Add(null);
}
dict.Add(columnName, tempList);
}
但正如其他人所提到的,将数据表转换为字典并不是一个好主意。评论中提到的具有不同长度的列通常不是一个问题,因为你无法添加值列,您只能将行添加到您定义列的表中。如果您没有为行中的某个列提供值,那么它将包含DBNull.Value
,如果您尚未将列设置为AllowDBNull = true
,那么如果您没有,则会出现错误填写其中一列。因此,永远不会有比其他行更多行的列,因为这是不可能的。